/*
Theme Name: Expreso Tokio 2025
Author: <a href="https://emalderete.com.ar" rel="noopener" target="_blank">Emanuel Alderete Dev</a> & IDE Comunicación Digital
Theme URI: //ideconsultora.com.ar/
Description: Plantilla personalizada para clientes, desarrollada casi en su totalidad desde el código para un mayor control sobre cada componente de la web.
Version: 1.0
Template: twentytwenty
*/

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Paleta de colores del sitio */

:root {
  --dark-color: #333333;
  --dark-gray-color: #555555;
  --gray-color: #aaaaaa;
  --light-gray-color: #e7e7e7;
  --light-color: #ffffff;
  --primary-color: #ff0002;
  --secondary-color: #161544;
  --terciary-color: #000000;
  --light-shadow: #00000038;
  --transition: 250ms;
  --bold-font: 800;
  --thin-font: 300;
  --font-family-primary: 'Montserrat';
}

/* Declaraciones Generales */

html {
  font-family: var(--font-family-primary);
  font-optical-sizing: auto;
  font-size: 16px;
  color: var(--dark-color);
}

body {
  width: 100% !important;
  font-family: var(--font-family-primary);
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, span, a, button {
  font-family: var(--font-family-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 2.7em;
}

h2 {
  font-size: 2.2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.5em;
}

h5 {
  font-size: 1.2em;
}

h6 {
  font-size: 1em;
}

.title, .home-title {
  font-weight: var(--bold-font);
  color: var(--primary-color);
}

.home-title {
  font-size: 2.5em;
}

/* Módulos reutilizables */
.buttons-center,
.buttons-left,
.buttons-right {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  width: 100%;
}

.buttons-left {
  justify-content: flex-start;
}

.buttons-right {
  justify-content: flex-end;
}

.buttons-center {
  justify-content: center;
}

.buttons, .buttons-primary, .buttons-light, .buttons-secondary, .buttons-terciary {
  padding: 0.5rem 2rem;
  border-radius: 99px;
  font-weight: var(--bold-font);
  transition: var(--transition);
  text-decoration: none;
}

.buttons--small {
  padding: 0.3rem 1.4rem;
}

.buttons-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: 2px solid var(--light-color);
  &:hover {
    background-color: transparent;
    color: var(--light-color);
    box-shadow: 0 0 10px var(--light-color);
  }
}

.buttons-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: 2px solid var(--primary-color);
  &:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
  }
}

.buttons-secondary {
  background-color: var(--secondary-color);
  color: var(--light-color);
  border: 2px solid var(--secondary-color);
  &:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
  }
}

.buttons-terciary {
  background-color: var(--terciary-color);
  color: var(--light-color);
  border: 2px solid var(--terciary-color);
  &:hover {
    background-color: var(--light-color);
    color: var(--terciary-color);
    box-shadow: 0 0 10px var(--terciary-color);
  }
}

.buttons-quaternary {
  background-color: var(--quaternary-color);
  color: var(--light-color);
  border: 2px solid var(--quaternary-color);
  &:hover {
    background-color: var(--light-color);
    color: var(--quaternary-color);
    box-shadow: 0 0 10px var(--quaternary-color);
  }
}

.light-separator, .primary-separator, .dark-separator {
  margin: 2rem auto;
  width: 100%;
  max-width: 1200px;
  height: 2px;
}

.light-separator {
  background-color: var(--light-color);
}

.dark-separator {
  background-color: var(--dark-color);
}

.primary-separator {
  background-color: var(--primary-color);
}

/* Efectos */
.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.primary-text {
  color: var(--primary-color);
}

.secondary-text {
  color: var(--secondary-color);
}

.terciary-text {
  color: var(--terciary-color);
}

.quaternary-text {
  color: var(--quaternary-color);
}

.dark-gray-text {
  color: var(--dark-gray-color);
}

.dark-text {
  color: var(--dark-color);
}

.ornament-wave {
  width: 100%;
}

.primary-bg-color {
  background-color: var(--primary-color);
  color: var(--light-color)
}

.secondary-bg-color {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.terciary-bg-color {
  background-color: var(--terciary-color);
  color: var(--light-color);
}

.quaternary-bg-color {
  background-color: var(--quaternary-color);
  color: var(--dark-color);
}

/* Header */
.top-header {
  background-color: var(--primary-color);
  width: 100%;
  padding: 0.7rem;
}

#header {
  position: fixed;
  transition: var(--transition);
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  /* box-shadow: 0 3px 10px var(--light-shadow); */
  .header__content {
    width: 100%;
    padding: 1.3rem 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__brand {
  width: 100%;
  max-width: 150px;
  .header__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.main-menu {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  li {
    a, button {
      color: var(--light-color);
      text-decoration: none;
      text-transform: uppercase;
      border: none;
      font-weight: 700;
      background-color: transparent;
    }
  }
  .menu-item {
    margin: 0 0.6rem;
  }
  .menu-item::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    margin: 0 auto;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  .menu-item:hover::after {
    width: 100%;
  }
  .main-menu__submenu {
    position: relative;
    ul {
      padding: 0;
      margin: 0;
      list-style: none;
      position: absolute;
      transition: var(--transition);
      opacity: 0;
      pointer-events: none;
      background-color: var(--light-color);
      border: 1px solid var(--light-gray-color);
      box-shadow: 2px 2px 10px var(--light-shadow);
      border-radius: 15px;
      width: max-content;
      transform: translateX(-25px);
      overflow: hidden;
      .submenu-item {
        a {
          color: var(--dark-color);
          padding: 0.4rem 0.5rem;
          display: block;
          text-decoration: none;
          text-transform: uppercase;
          border: none;
          background-color: transparent;
        }
        &:hover {
          background-color: var(--primary-color);
          a {
            color: var(--light-color);
          }
        }
      }
    }
    &:hover {
      ul {
        opacity: 1;
        pointer-events: all;
      }
    }
    &:hover .menu-item::after {
      width: 100%;
    }
  }
}

.header__highlight-button {
  a {
    color: var(--light-color);
    font-weight: 600;
    padding: 0.7rem 2.1rem;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    &:hover {
      background-color: var(--light-color);
      color: var(--primary-color);
      box-shadow: 0 0 10px var(--light-color);
    }
  }
}

.header__highlight-button:not(.desk) {
  a {
    display: block;
    width: 100%;
  }
}

.header__mobile-button {
  display: none;
  button {
    background-color: transparent;
    color: var(--secondary-color);
    font-size: 1.8em;
    border: none;
    padding: 1.5rem;
  }
}

.mobile-menu {
  font-family: var(--font-family-primary);
  .offcanvas-header {
    .mobile-menu__brand {
      width: 100%;
      max-width: 170px;
      .mobile-menu__logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }
  .offcanvas-body {
    .mobile-nav {
      width: 100%;
      list-style: none;
      .mobile-menu__submenu {
        .accordion-button {
          font-family: var(--font-family-primary);
          font-weight: 400;
          font-size: 1.5em;
          color: var(--dark-color);
        }
        .accordion-button::before {
          content: '';
          display: inline-block;
          width: 0;
          height: 3px;
          background-color: var(--primary-color);
          transition: var(--transition);
        }
        .accordion-button:hover::before {
          width: 1.5rem;
          margin: 0 0.7rem 0 0;
        }
        .accordion-button:not(.collapsed)::before {
          width: 1.5rem;
          margin: 0 0.7rem 0 0;
        }
        .accordion-button:not(.collapsed) {
          background-color: transparent;
          color: var(--dark-color);
        }
        .accordion-body {
          display: flex;
          align-items: flex-start;
          justify-content: flex-start;
          flex-wrap: wrap;
          a {
            text-decoration: none;
            color: var(--dark-color);
            font-size: 1em;
            padding: 0.5rem 1rem;
            display: inline-block;
            width: 100%;
            display: flex;
            align-items: center;
            &:hover {
              background-color: var(--primary-color);
              color: var(--light-color);
            }
          }
          a::before {
            content: '';
            display: inline-block;
            width: 1.5rem;
            height: 3px;
            background-color: var(--primary-color);
            margin-right: 1rem;
          }
          a:hover::before {
            background-color: var(--light-color);
          }
        }
      }
      .mobile-menu__item {
        padding: 1rem 1.25rem;
        font-size: 1.5em;
        display: flex;
        align-items: center;
        a {
          text-decoration: none;
          color: var(--dark-color);
        }
      }
      .mobile-menu__item::before {
        content: '';
        display: inline-block;
        width: 0;
        height: 3px;
        background-color: var(--primary-color);
        transition: var(--transition);
      }
      .mobile-menu__item:hover::before {
        width: 1.5rem;
        margin: 0 0.7rem 0 0;
      }
    }
  }
}

/* Header [Scroll] */
.header--scroll {
  background-color: var(--light-color) !important;
  box-shadow: 0 3px 10px var(--light-shadow);
}

.main-menu--scroll {
  li {
    a, button {
      color: var(--dark-color);
    }
  }
}

/* Adorno del header */
.header-ornament {
  width: 100%;
  height: 100%;
  max-height: 145px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Redes sociales: Fixed */
.c-social-media {
  width: max-content;
  position: fixed;
  top: 50%;
  right: 3.5rem;
  transform: translateY(-50%) rotateZ(-90deg);
  transform-origin: top right;
  z-index: 8;
  background-color: var(--light-color);
  border-radius: 99px;
  padding: 0.3rem;
  .c-social-media__content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    .c-social-media__item {
      color: var(--primary-color);
      font-size: 1.4em;
      display: inline-block;
      margin: 0.1rem 0;
      transform: rotateZ(90deg);
      width: 30px;
      height: 30px;
      border-radius: 99px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      text-align: center;
    }
    span {
      color: var(--primary-color);
      width: max-content;
      white-space: nowrap;
      font-weight: 600;
      &::after {
        content: '';
        width: 20px;
        height: 2px;
        display: inline-block;
        background-color: var(--primary-color);
        border-radius: 2px;
        margin: 3px 5px 3px 10px;
      }
    }
  }
}

/* Main */
#main {
  width: 100%;
}

/* Sección: Hero */
#hero {
  width: 100%;
  .hero__overlay {
    width: 100%;
    height: 100%;
  }
}

.about {
  width: 100%;
  padding: 10rem 0 12rem;
  background-color: var(--light-gray-color);
  .about__content {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    .about__box50 {
      width: 50%;
    }
    .about__box50:first-child {
      overflow: hidden;
      border-radius: 15px;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .about__box50:last-child {
      padding: 5rem 2rem;
    }
  }
}

/* Servicios */
.services {
  width: 100%;
  height: 90svh;
  .services__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    .services__box {
      width: 50%;
      padding: 2rem 1.5rem;
    }
    .services__box:first-child {
      background: linear-gradient(135deg, var(--dark-color) 0%, var(--terciary-color) 90%);
      display: flex;
      align-items: center;
      justify-content: center;
      .services__title {
        width: 100%;
        max-width: 450px;
        img {
          width: 100%;
          max-width: 240px;
          margin-bottom: 0.5rem;
        }
        .services__slogan {
          font-size: 4.2em;
        }
      }
    }
    .services__box:last-child {
      background-color: var(--dark-color);
      height: 100%;
    }
  }
}

.services__loop {
  width: 100%;
  height: 92%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.service-item {
  width: 94%;
  height: 94%;
  border-radius: 15px;
  overflow: hidden;
  margin: 1rem 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  .service-item__content {
    width: 100%;
    height: 100%;
    position: relative;
    .service-item__bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      transition: var(--transition);
    }
    .service-item__overlay {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgb(from var(--terciary-color) r g b / 25%) 0%, rgb(from var(--terciary-color) r g b / 90%) 80%);
      display: flex;
      align-items: flex-end;
      .service-item__info {
        width: 100%;
        padding: 1rem;
        .service-item__title {
          color: var(--light-color);
          margin-bottom: 0.5rem;
        }
        p {
          color: var(--light-color);
        }
      }
    }
  }
}

.service-item:hover .service-item__bg {
  transform: scale(1.1);
}

/* Cobertura */
.coverage {
  width: 100%;
  margin: 6rem 0;
  .coverage__content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2rem;
    .coverage__box:first-child {
      width: 40%;
      .coverage__map {
        width: 100%;
        max-width: 325px;
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
    }
    .coverage__box:last-child {
      width: 60%;
    }
  }
}

.coverage__loop {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.coverage-item {
  width: 100%;
  max-width: 360px;
  margin: 1.5rem 1rem;
  .coverage-item__content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    .coverage-item__icon {
      width: 30%;
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    .coverage-item__info {
      width: 70%;
      padding: 0 1rem;
      h4 {
        font-weight: 800;
      }
    }
  }
}

/* Redes sociales */
.social-media {
  width: 100%;
  margin: 2rem 0;
  background-color: var(--secondary-color);
  .social-media__content {
    width: 100%;
    max-width: 1440px;
    padding: 4rem 1rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap-reverse;
    .social-media__inner {
      width: 50%;
      padding: 0 1.5rem;
    }
    .social-media__inner:first-child {
      .social-media__list {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-wrap: wrap;
        list-style: none;
        margin: 0;
        padding: 0;
        .social-media__brand-iso {
          width: 100%;
          max-width: 70px;
          animation: rotate-right 5000ms linear infinite;
        }
        .social-media__item {
          margin: 1rem;
          .social-media__button {
            width: 70px;
            height: 70px;
            border-radius: 99px;
            background-color: var(--light-color);
            color: var(--quaternary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 3em;
            text-decoration: none;
            &:hover {
              color: var(--light-color);
              transform: scale(1.2);
              box-shadow: 0 10px 2px var(--light-shadow);
            }
          }
        }
      }
    }
    .social-media__inner:last-child {
      .home-title {
        text-align: left;
      }
    }
  }
}

.social-media__button.facebook:hover {
  background-color: #3b5998 !important;
}

.social-media__button.instagram:hover {
  background-color: #e4405f !important;
}

.social-media__button.youtube:hover {
  background-color: #ff0000 !important;
}

.social-media__button.tiktok:hover {
  background-color: #000000 !important;
}

.social-media__button.linkedin:hover {
  background-color: #0a66c2 !important;
}

.social-media__button.whatsapp:hover {
  background-color: #25d366 !important;
}

@keyframes rotate-right {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}

/* Search */
.search {
  width: 100%;
  margin: 1.5rem 0;
  .search__content {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    .search__form {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.5rem 1.5rem;
      .search__field {
        font-size: 1.2em;
        width: calc(100% - 3.5rem);
        padding: 1.5rem 0 1.5rem 1rem;
        color: var(--dark-color);
        background-color: rgb(from var(--primary-color) r g b / 15%);
        font-style: italic;
        border-radius: 25px 0 0 25px;
        border: none;
        &:focus {
          outline: none;
        }
        &::placeholder  {
          color: var(--gray-color);
        }
      }
      .search__submit {
        padding: 0.5rem;
        background-color: var(--primary-color);
        color: var(--light-color);
        border: 2px solid var(--primary-color);
        border-radius: 0 25px 25px 0;
        transition: var(--transition);
        overflow: hidden;
        width: 3.5rem;
        height: 4.7rem;
        span {
          text-align: end;
          display: inline-block;
          width: 6.3rem;
          i {
            margin-right: 1rem;
          }
        }
        &:hover {
          background-color: var(--light-color);
          box-shadow: 0 0 10px var(--secondary-color);
          color: var(--secondary-color);
          border: 2px solid var(--secondary-color);
          width: 9rem;
        }
      }
    }
  }
}

/* Sponsors */
#supports {
  width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(from var(--light-gray-color) r g b / 40%);
  .supports__content {
    width: 100%;
    max-width: 1400px;
  }
  .supports__cat {
    width: 95%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1rem;
    .supports__title {
      width: 20%;
      box-shadow: 3px 3px 5px var(--light-shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 15rem;
      border-radius: 0 15px 0 15px;
      background-color: var(--primary-color);
      .supports__title-text {
        text-transform: uppercase;
        font-weight: var(--bold-font);
        text-align: center;
      }
    }
    .supports__primary-bg-color {
      background-color: var(--primary-color);
    }
    .supports__secondary-bg-color {
      background-color: var(--secondary-color);
    }
    .supports__terciary-bg-color {
      background-color: var(--terciary-color);
    }
    .supports__slider {
      width: 79%;
      box-shadow: 3px 3px 5px var(--light-shadow);
      height: 15rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 15px 0 15px 0;
      background-color: var(--light-color);
      border: 1px solid var(--light-gray-color);
    }
  }
}

/* Contenido Dinámico y Educativo */
.news {
  width: 100%;
  .news__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    .news__loop {
      width: 100%;
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      justify-content: space-around;
    }
  }
}

.news-item {
  width: 300px;
  margin: 0.5rem;
  perspective: 1000px;
  .news-item__content {
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: var(--transition);
    width: 100%;
    overflow: hidden;
    &:hover {
      box-shadow: 15px 15px 10px var(--light-shadow);
    }
    .news-item__image {
      width: 100%;
      outline: 2px solid var(--primary-color);
      height: 16rem;
      border-radius: 25px;
      overflow: hidden;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    .news-item__date {
      p {
        margin: 0;
        color: var(--gray-color);
      }
    }
    .news-item__info {
      width: 100%;
      padding: 1rem;
      .news-item__title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
        line-clamp: 2;
      }
      p:not(.news-item__date p) {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: clip;
        line-clamp: 3;
        height: 67px;
      }
    }
    .news-item__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      .button-left {
        width: calc(60% - 7.5px);
      }
      .news-item__share {
        width: calc(40% - 7.5px);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        .share-icon {
          width: 35px;
          height: 35px;
          margin: 0 5px;
          font-size: 1.2em;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 99px;
          transition: var(--transition);
        }
        .share-icon.facebook {
          background-color: var(--primary-color);
          color: var(--light-color);
          &:hover {
            background-color: #3b5998;
            box-shadow: 0 0 10px #3b5998;
          }
        }
        .share-icon.whatsapp {
          background-color: var(--primary-color);
          color: var(--light-color);
          &:hover {
            background-color: #25d366;
            box-shadow: 0 0 10px #25d366;
          }
        }
      }
    }
  }
}

.news-item__spec-area {
  width: 100%;
  .spec-area__content {
    width: 100%;
    padding: 1rem 0.5rem;
    font-weight: 800;
  }
}

/* Footer */
#footer {
  width: 100%;
  background-color: var(--primary-color);
  padding: 3rem 2rem;
  .footer__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap-reverse;
    gap: 15px;
    .footer__inner {
      width: calc(50% - 12.5px);
    }
    .footer__inner:first-child {
      .footer__brand {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          max-width: 320px;
        }
      }
      .footer__info {
        list-style: none;
        padding: 0;
        width: 100%;
        max-width: 368px;
        margin: 0 auto;
        color: var(--light-color);
        li {
          margin: 0.5rem 0;
        }
      }
      .footer-organizan {
        width: 100%;
        max-width: 368px;
        margin: 2rem auto 0;
        background-color: var(--light-color);
        border-radius: 15px;
        padding: 0.5rem 1.5rem;
        .footer-organizan__logos {
          display: flex;
          align-items: center;
          justify-content: flex-start;
          gap: 30px;
          img {
            width: 100%;
            max-width: 78px;
          }
        }
      }
    }
    .footer__inner:last-child {
      .contact {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        background-color: var(--light-color);
        padding: 1rem;
        border-radius: 15px;
        font-weight: 700;
        p {
          margin: 0;
        }
        .cf7-input, .cf7-textarea {
          padding: 0.7rem 0.5rem 0.7rem 1rem;
          border: none;
          border-bottom: 1px solid var(--primary-color);
          width: 100%;
          margin: 0.5rem 0;
          &:focus {
            outline: 4px solid rgb(from var(--primary-color) r g b / 30%);
          }
        }
        .cf7-textarea {
          height: 6rem;
        }
        .cf7-submit {
          padding: 0.5rem 2rem;
          border-radius: 15px;
          background-color: var(--primary-color);
          color: var(--light-color);
          border: 2px solid var(--primary-color);
          transition: var(--transition);
          margin: 1rem 0;
          &:hover {
            background-color: var(--light-color);
            color: var(--primary-color);
            box-shadow: 0 0 10px var(--primary-color);
          };
        }
      }
    }
  }
}

.footer__ide {
  width: 100%;
  background-color: var(--dark-color);
  padding: 0.5rem 1rem;
  a {
    text-decoration: none;
    display: flex;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    font-family: sans-serif !important;
    img {
      width: 27px;
      margin-right: 0.5rem;
    }
    color: var(--light-color);
  }
}

/*
###################################################################################
                DEFINICIONES DE PÁGINAS, CATEGORÍAS Y ENTRADAS
###################################################################################
*/
.entry {
  width: 100%;
  padding: 2rem;
  background-color: var(--light-gray-color);
  color: var(--dark-gray-color);
  .entry__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--light-color);
    box-shadow: 10px 10px 10px var(--light-shadow);
    padding: 2rem;
    .entry__box:first-child {
      width: 65%;
      padding: 0 0.5rem;
      .entry__header {
        width: 100%;
        .entry__att-image {
          width: 100%;
          height: calc((1200px - (1200px * 0.4)) / 1.5);
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
        .breadcrumbs {
          font-weight: 700;
          margin: 0;
          a {
            color: var(--primary-color);
            text-decoration: none;
          }
          .breadcrumb_last {
            color: var(--dark-gray-color);
          }
        }
        .entry__date {
          margin-bottom: 2rem;
        }
        .entry__title {
          color: var(--primary-color);
          margin-bottom: 0;
          margin-top: 2rem;
        }
      }
      .entry__excerpt {
        p {
          width: 100%;
          padding: 1.5rem;
          border: 3px dashed var(--primary-color);
          font-size: 1.5em;
          border-radius: 25px 25px 25px 5px;
          margin: 2rem 0;
        }
      }
      .entry__body {
        h1, h2, h3, h4, h5, h6 {
          color: var(--primary-color);
          margin: 2rem 0 0.7rem 0;
        }
      }
      .entry-tags {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        .entry-tags__title {
          margin-right: 1rem;
          color: var(--primary-color);
        }
        ul {
          list-style: none;
          margin: 0;
          padding: 0;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          flex-wrap: wrap;
          li {
            margin: 0.3rem;
            a {
              display: block;
              color: var(--primary-color);
              text-decoration: none;
              border: 1px solid var(--primary-color);
              background-color: transparent;
              padding: 0.3rem 0.5rem;
              border-radius: 99px;
              font-size: 0.8em;
              &:hover {
                background-color: var(--primary-color);
                color: var(--light-color);
              }
            }
          }
        }
      }
    }
    .entry__box:last-child {
      width: 35%;
      padding: 0 0.5rem;
      .entry-box__content {
        .entry-search {
          position: relative;
          width: 100%;
          .entry-search__form {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            .entry-search__field {
              padding: 0.5rem 1rem;
              border: 1px solid var(--light-gray-color);
              width: 100%;
              &:focus {
                outline: 4px solid rgb(from var(--primary-color) r g b / 30%);
              }
            }
            .entry-search__submit {
              width: 3rem;
              height: 2.7rem;
              font-size: 1.2em;
              border: 2px solid var(--primary-color);
              background-color: var(--primary-color);
              color: var(--light-color);
            }
          }
        }
        .entry-related {
          width: 100%;
          margin: 1rem 0;
          .entry-related__title {
            color: var(--primary-color);
            margin-bottom: 1rem;
          }
          .entry-related__body {
            li {
              a {
                color: var(--primary-color);
                text-decoration: none;
                display: block;
                padding: 0.4rem;
                border-bottom: 1px dashed var(--primary-color);
                &:hover {
                  background-color: var(--primary-color);
                  color: var(--light-color);
                }
              }
            }
          }
        }
      }
      .entry-follow {
        width: 100%;
        .entry-follow__content {
          width: 100%;
          .entry-follow__title {
            color: var(--primary-color);
          }
          .entry-follow__list {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            list-style: none;
            margin: 0;
            padding: 0;
            .entry-follow__item {
              margin: 0 0.3rem;
              a {
                text-decoration: none;
                color: var(--light-color);
                display: flex;
                background-color: var(--primary-color);
                border-radius: 99px;
                width: 3.5rem;
                height: 3.5rem;
                font-size: 1.6em;
                justify-content: center;
                align-items: center;
                border: 2px solid var(--primary-color);
                transition: var(--transition);
                &:hover {
                  background-color: var(--light-color);
                  color: var(--primary-color);
                  box-shadow: 0 0 10px var(--primary-color);
                }
              }
            }
          }
        }
      }
    }
  }
}

.entry a:not(.header__highlight-button a):not(.buttons-center a):not(.buttons-left a):not(.buttons-right a):not(.menu-item a):not(.submenu-item a):not(.footer__ide a):not(.entry-follow__item a) {
  color: var(--primary-color);
  &:hover {
    color: var(--quaternary-color);
  }
}

/* Categorías */
.categories {
  width: 100%;
  padding: 2rem;
  .categories__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    .categories__header {
      width: 100%;
      .categories__title {
        color: var(--primary-color);
        margin-bottom: 1rem;
      }
      .categories__description {
        color: var(--dark-gray-color);
        margin-bottom: 2rem;
        width: 100%;
      }
    }
    .categories__body {
      width: 100%;
      .categories__loop {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: space-evenly;
        flex-wrap: wrap;
      }
    }
  }
}

/* Pages */
.page {
  width: 100%;
  background-color: var(--light-gray-color);
  .page__content {
    width: 100%;
    .page-header {
      width: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      flex-wrap: wrap;
      width: 100%;
      height: 100%;
      position: relative;
      .page-header__overlay {
        position: absolute;
        z-index: 2;
        padding: 2rem;
        top: 0;
        height: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        background: linear-gradient(180deg, rgba(255,255,255, 0) 11%, rgba(0,0,0,0.6194852941176471) 77%);
      }
      .page-header__content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 1200px;
        padding: 2rem;
        margin: 0 auto;
        .page__title {
          color: var(--dark-color);
        }
        #breadcrumbs {
          font-weight: 700;
          a {
            color: var(--primary-color);
            text-decoration: none;
          }
          .breadcrumb_last {
            color: var(--light-color);
          }
        }
        #breadcrumbs.primary-color-last .breadcrumb_last {
          color: var(--dark-color);
        }
      }
    }
    .page__body {
      width: 100%;
      margin-bottom: 5rem;
      .page__content {
        background-color: var(--light-color);
        box-shadow: 2px 2px 5px var(--light-shadow);
        border: 1px solid var(--light-gray-color);
        border-radius: 25px;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        h1, h2, h3, h4, h5, h6 {
          color: var(--primary-color);
        }
      }
    }
  }
}

.page a:not(.header__highlight-button a):not(.buttons-center a):not(.buttons-left a):not(.buttons-right a):not(.menu-item a):not(.submenu-item a):not(.footer__ide a):not(.entry-follow__item a) {
  color: var(--primary-color);
  &:hover {
    color: var(--quaternary-color);
  }
}

.not-found {
  width: 100%;
  .not-found__content {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    color: var(--dark-gray-color);
    .not-found__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      .not-found__box {
        width: calc(50% - 10px);
      }
      .not-found__box:first-child {
        img {
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
    }
  }
}

.wp-pagenavi {
  margin: 2rem auto 0;
  width: max-content;
  transform: scale(1.02);
  .pages, .current, .page, .nextpostslink, .previouspostslink {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
  }
  .pages {
    border-radius: 10px 0 0 10px;
  }
  .current {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color) !important;
  }
  .page {
    background-color: transparent;
  }
}

.wp-pagenavi > :last-child {
  border-radius: 0 10px 10px 0;
}

/*
###################################################################################
    DEFINICIONES DE OPTIMIZACIÓN Y ADAPTABILIDAD DEL SITIO EN DIFERENTES PANTALLAS
###################################################################################
*/

@media (width < 1441px) {
  .entry {
    .entry__content {
      max-width: 1024px;
      .entry__box:first-child {
        .entry__header {
          .entry__att-image {
            height: calc((1024px - (1024px * 0.4)) / 1.5);
          }
        }
      }
    }
  }
  .about {
    .about__content {
      .about__box50:first-child {
        border-radius: 0 20px 20px 0;
      }
    }
  }
  .coverage {
    .coverage__content {
      .coverage__box:first-child {
        width: 50%;
      }
      .coverage__box:last-child {
        width: 50%;
      }
    }
  }
  .coverage__loop {
    height: 650px;
    overflow: hidden;
    overflow-y: auto;
  }
  .coverage-item {
    max-width: 100%;
    .coverage-item__content {
      .coverage-item__icon {
        width: 20%;
      }
      .coverage-item__info {
        width: 80%;
      }
    }
  }
}

@media (width < 1200px) {
  .main-menu {
    display: none;
  }
  .header__highlight-button.desk {
    display: none;
  }
  .header__mobile-button {
    display: block;
  }
  #brand-light {
    display: none !important;
  }
  #brand-color {
    display: block !important;
  }
  .where {
    .where__content {
      .where__map {
        max-width: 94vw;
        max-height: 21.5vw;
        .ornament__location-pin {
          font-size: 13vw;
          max-width: 21vw;
          max-height: 22vw;
        }
      }
    }
  }
  .services {
    .services__content {
      .services__box:first-child {
        .services__title {
          max-width: 100%;
          .services__slogan {
            font-size: 3.5em;
          }
        }
      }
    }
  }
  .social-media {
    .social-media__content {
      .social-media__inner {
        width: 100%;
      }
      .social-media__inner:last-child {
        .home-title {
          text-align: center;
        }
      }
    }
  }
}

@media (width < 1100px) {
  .entry {
    .entry__content {
      .entry__box:first-child {
        .entry__header {
          .entry__att-image {
            height: 37vw;
          }
        }
      }
    }
  }
  #beneficios {
    .beneficios__content {
      .beneficios__group {
        justify-content: space-evenly;
      }
    }
  }
  .beneficios-item {
    margin: 0.5rem;
  }
  .beneficios-item:first-child {
    .beneficios-item__info {
      padding-right: 1.5rem;
      p {
        height: 135px;
      }
    }
  }
  .beneficios-item:nth-child(2){
    transform: scale(1);
  }
  .beneficios-item:last-child {
    .beneficios-item__info {
      padding-left: 1.5rem;
    }
  }
}

@media (width < 992px) {
  #header {
    position: sticky;
    background-color: var(--light-color);
  }
  .about {
    .about__content {
      .about__box50 {
        width: 100%;
        padding: 0 4vw;
      }
    }
  }
  .services {
    height: auto;
    min-height: 90svh;
    .services__content {
      height: auto;
      .services__box {
        width: 100%;
        min-height: 30vh;
      }
      .services__box:last-child {
        height: auto;
        min-height: 60vh;
      }
    }
  }
  .c-social-media {
    display: none;
  }
  .triple-section__box {
    .triple-section__inner {
      width: 70%;
    }
  }
}
@media (width < 900px) {
  .entry {
    .entry__content {
      .entry__box:first-child {
        width: 100%;
        .entry__header {
          .entry__att-image {
            height: 53vw;
          }
        }
      }
      .entry__box:last-child {
        width: 100%;
        padding-top: 3rem;
        border-top: 3px dashed var(--primary-color);
      }
    }
  }
	.beneficios-item {
    .beneficios-item__box {
      width: 100%;
    }
  }
}

@media (width < 850px) {
  .agenda {
    .agenda__content {
      .agenda__inner {
        .agenda__box:last-child {
          justify-content: space-evenly;
        }
      }
    }
  }
  .triple-section__overlay {
    .triple-section__inner {
      .triple-section__box50 {
        width: 100%;
      }
    }
  }
  .triple-section__box50:first-child {
    min-height: auto;
  }
}

@media (width < 768px) {
  .hero__columns-group {
    .hero__column:first-child {
      width: 100%;
    }
    .hero__column:last-child {
      display: none;
    }
  }
}

@media (width < 720px) {
  #supports {
    .supports__cat {
      .supports__title,
      .supports__slider {
        width: 100%;
        margin: 0.5rem;
      }
      .supports__title {
        height: auto;
        padding: 1rem;
        border-radius: 15px 15px 0 0;
      }
      .supports__slider {
        border-radius: 0 0 15px 15px;
      }
    }
  }
  .coverage {
    .coverage__content {
      .coverage__box:first-child {
        width: 30%;
      }
      .coverage__box:last-child {
        width: 70%;
        h2 {
          opacity: 0;
          pointer-events: none;
        }
      }
    }
  }
  .coverage__loop {
    height: 400px;
  }
}

@media (width < 620px) {
  .services {
    height: auto;
    min-height: 30svh;
    .services__content {
      height: auto;
      .services__box {
        width: 100%;
        min-height: 30vh;
      }
      .services__box:first-child {
        .services__title {
          .services__slogan {
            font-size: 2.5em;
          }
        }
      }
      .services__box:last-child {
        height: auto;
        min-height: 30vh;
      }
    }
  }
  .services__loop {
    max-height: 450px;
  }
  #footer {
    .footer__content {
      gap: 0;
      .footer__inner {
        width: 100%;
        margin: 1rem 0;
      }
    }
  }
}

@media (width < 576px) {
  #countdown {
    .countdown__content {
      .hurrytimer-campaign.hurrytimer-campaign-18 {
        height: 10rem;
      }
    }
  }
  .triple-section__button {
    width: 100%;
  }
}

@media (width < 512px) {
  .beneficios-item {
    .beneficios-item__thumbnail, .beneficios-item__info {
      width: 100%;
    }
  }
}

@media (width < 480px) {
  .beneficios-item {
    top: 8rem;
    .beneficios-item__box:last-child {
      max-height: 15rem;
    }
  }
  .beneficios-item:nth-child(1) {
    top: 5rem;
  }
  .beneficios-item:nth-child(2) {
    top: 6rem;
  }
  .beneficios-item:nth-child(3) {
    top: 7rem;
  }
  .beneficios-item:nth-child(4) {
    top: 8rem;
  }
  .entry {
    padding: 0;
    .entry__content {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 1rem;
    }
  }
  .triple-section__box {
    flex-wrap: wrap;
    .triple-section__inner {
      width: 100% !important;
      margin: 1rem 0 !important;
      .triple-section__image {
        height: 250px;
        border-radius: 10px;
      }
    }
  }
}

@media (width < 400px){
  #countdown {
    .countdown__content {
      .hurrytimer-campaign.hurrytimer-campaign-18 {
        height: 10rem;
      }
    }
  }
}