:root {
  --primary-color: #FEF8C2;
  --secondary-color: #1C334A;
  --primary-accent: #F5BE3D;
  --secondary-accent: #4C3616;
  --alternative-accent: #FFF;
  --disabled-color: #999;
  --light: 300;
  --bold: 700;
  --black: 800;
}

body {
  margin: 0;
  font-family: 'lato', sans-serif;
  color: var(--secondary-accent);
  text-align: center;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--primary-accent);
}

/* HEADER */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3;
}

.header-separator {
  margin: 0 15px;
}

.header-separator-sm {
  margin: 0 8px;
}

.header-separator-line {
  background-color: var(--primary-color);
  width: 1px;
  height: 75%;
  margin: 0 25px;
}

.header-logo-container {
  height: 100%;
  display: flex;
  align-items: center;
}

.header-logo-container>.header-logo-sm {
  max-height: 35%;
}

.header-logo-container>.header-logo {
  max-height: 40%;
}

.header-logo-container>.header-logo-lg {
  max-height: 50%;
}

#info-header {
  background-color: var(--secondary-color);
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#info-header p,
#info-header a {
  color: var(--primary-color);
  font-weight: var(--light);
  font-size: 19px;
  letter-spacing: 4px;
}

#info-header-center-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#info-header-center-container p {
  padding: 0;
  margin: 0;
}

#header-menu {
  width: 100%;
  background-color: var(--secondary-accent);
  height: 80px;
}

#header-menu nav,
#header-menu nav ul,
#header-menu nav li,
#header-menu nav a,
#header-menu nav button {
  height: 100%;
}

#header-menu nav ul li {
  flex: 1;
  max-width: 20%;
}

#header-menu nav button {
  width: 100%;
}

#header-filler {
  width: 100%;
  height: 200px;
}

/* RRSS */
.rrss ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 10px 0;
}

.rrss li {
  margin: 0 7px;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav button {
  font-size: 20px;
  background-color: var(--secondary-accent);
  color: var(--alternative-accent);
  font-weight: normal;
}

nav button:hover {
  background-color: var(--primary-accent);
  color: var(--alternative-accent);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.35);
}

nav button.selected {
  background-color: var(--primary-accent);
  color: var(--secondary-color);
}

/* BODY */

main {
  margin: 20px 0 50px 0;
}

span:not(:first-child).anchor {
  padding: 175px;
}

strong.extra {
  font-weight: var(--black);
}

#home-header {
  background-image: url("../images/fondo-header-home.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  width: 1200px;
  max-width: 95%;
  height: 380px;
  display: flex;
  align-items: center;
}

#home-header #home-header-img-container {
  height: 45%;
  max-height: 45%;
  width: 26%;
  display: flex;
  justify-content: flex-end;
  padding-left: 25px;
}

#home-header img {
  height: 100%;
}

#home-header-separator {
  background-color: var(--primary-accent);
  width: 1px;
  height: 45%;
  margin: 0 28px;
}

#home-header-title {
  text-align: left;
  font-size: 48px;
  font-weight: var(--light);
  line-height: 65px;
  flex: 1;
  padding-right: 25px;
}

#home-header-title>strong {
  font-weight: var(--black);
  font-size: 67px;
}

.home-body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--secondary-color);
  border: 15px solid var(--secondary-accent);
  margin: 0 auto;
  width: 1200px;
  max-width: 95%;
  height: 630px;
  display: flex;
  flex-direction: column;
}

.home-body .home-body-row {
  display: inline-flex;
  height: 50%;
}

.home-body .home-body-row>div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.home-body .home-body-logo {
  width: 75%;
}

.home-body .home-body-row-img-container {
  width: 62%;
  height: 40%;
}

.home-body .home-body-row-img-container img {
  max-height: 100%;
}

.home-body-img-highlight {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
}

.home-body a {
  max-width: 280px;
  max-height: 80px;
  width: 90%;
  height: 30%;
}

.home-body a button {
  background-color: unset;
  background-image: url("../images/pastilla-body-home.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 25px;
  text-transform: none;
  color: var(--secondary-color);
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.home-body a button:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
}

.section-header {
  background-image: url("../images/fondo-header-interiores.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  width: 1200px;
  max-width: 95%;
  height: 200px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}

.section-header>h2 {
  width: 100%;
  margin: 0 50px;
}

.content-boxed {
  width: 1000px;
  max-width: 85%;
  margin: 0 auto;
}

section {
  position: relative;
  z-index: 1;
}

section.section-separator {
  padding: 15px 0;
}

button {
  background-color: var(--secondary-accent);
  color: var(--primary-color);
  font-family: 'lato', sans-serif;
  font-size: 25px;
  font-weight: var(--black);
  text-transform: uppercase;
  border: none;
}

button:hover {
  background-color: var(--primary-accent);
  color: var(--secondary-color);
  cursor: pointer;
}

button:disabled {
  background-color: var(--disabled-color);
  cursor: not-allowed;
}

.buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.buttons-wrapper>a {
  margin-right: 30px;
  flex: 1;
  max-width: 500px;
}

.buttons-wrapper>a:last-child {
  margin: 0;
}

.buttons-wrapper>a:only-child {
  margin: 0 auto;
}

.buttons-wrapper button {
  height: 80px;
  width: 100%;
}

h2 {
  color: var(--alternative-accent);
  font-size: 50px;
  font-weight: var(--bold);
  text-transform: uppercase;
  line-height: 50px;
  letter-spacing: 4px;
}

h3 {
  color: var(--primary-accent);
  font-size: 40px;
  font-weight: var(--black);
  text-transform: uppercase;
  line-height: 40px;
}

h3.subheader {
  text-transform: none;
}

h4 {
  color: var(--primary-accent);
  font-size: 25px;
  font-weight: var(--black);
  text-transform: uppercase;
}

section p,
section a,
section label {
  font-size: 20px;
  line-height: 27px;
  color: var(--secondary-color);
}

section a {
  text-decoration: underline;
  color: var(--primary-accent);
  font-weight: var(--bold);
}

.map-wrapper {
  width: 100%;
  height: 450px;
  display: flex;
}

.map-wrapper>div {
  flex: auto;
  height: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 15px;
}

.map-wrapper>div:last-child {
  margin-right: 0;
}

.map-wrapper>div#place-image {
  background-image: url("../images/ateneo-body-interiores.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.map-wrapper iframe {
  width: 100%;
}

.sponsor {
  width: 24%;
  display: inline-block;
  vertical-align: middle;
  padding: 20px 30px;
}

.press-highlight {
  color: var(--primary-accent);
}

.press-info {
  margin: 0;
}

.press-info a {
  font-weight: 400;
  text-decoration: none;
}

#categories-list {
  padding: 0 20px;
  width: 100%;
}

#categories-list .category {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 40px;
  margin: 30px 0;
}

#categories-list .category>img {
  height: 100px;
  width: 100px;
  min-width: 100px;
}

#categories-list .category p {
  text-transform: uppercase;
  text-align: left;
}

#winners-expandable {
  color: var(--primary-accent);
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 27px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

#winners-expandable>i {
  font-size: 30px;
  margin: 0 8px;
  transition: transform 0.2s;
}

#winners-expandable>i.collapsed {
  transform: rotate(-90deg);
}

#winners-expandable>p {
  color: var(--primary-accent);
  text-decoration: underline;
  margin: 0;
  padding: 0;
}

#award-winner-list {
  padding: 30px 10px;
  width: 100%;
}

#award-winner-list .award-winner {
  display: inline-flex;
  align-items: center;
  width: 100%;
  gap: 5px;
  margin: 15px 0;
}

#award-winner-list .award-winner::before {
  content: "";
  background-image: url("../images/icono-galardon-body-interiores.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
}

#award-winner-list .award-winner .award-title {
  color: var(--primary-accent);
  font-weight: var(--bold);
}

#award-winner-list .award-winner p {
  text-align: left;
  padding: 0;
  margin: 0;
}

/* FOOTER */

footer {
  width: 100%;
  height: 400px;
  background-color: var(--secondary-accent);
  display: flex;
}

footer a,
footer p {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: var(--light);
  line-height: 27px;
}

footer a:hover {
  color: var(--alternative-accent);
}

#footer-elements-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#footer-campaign-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-direction: column;
}

#footer-campaign-logo {
  width: 60%;
  max-height: 70%;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

#footer-campaign-slogan {
  width: 40%;
}

#footer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 10px 5px;
}

#footer-bar ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer-bar .rrss li>a {
  display: flex;
}

#footer-bar .rrss i.fab {
  margin: 0 10px;
  display: flex;
  align-items: center;
}