/*
Theme Name: Hotel Catalinas Tucumán
Author: <a href="https://emalderete.com.ar" target="_blank">Emanuel Alderete</a> & IDE Comunicación Digital
Description: Desarrollado en 2025. Esta plantilla fue pensada exclusivamente para proyectar y transformar la visión del emblemático Hotel Catalinas a un formato digital y accesible para todos sus clientes, asociados e interesados.
Version: 1.0
Template: twentytwenty
Text Domain: hotel-catalinas
*/

/* 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: #242424;
  --secondary-color: #e7b315;
  --light-shadow: #00000038;
  --transition: 250ms;
  --bold-font: 800;
  --thin-font: 300;
}

/* Declaraciones Generales */

html {
  font-size: 14px;
  color: var(--dark-color);
  height: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  height: 100%;
}

/* Headings */
p, ul, ol, li, span, a, button {
  font-family: 'Nunito';
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: 'Nunito';
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.4em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.3em;
}

h6 {
  font-size: 1.2em;
}

.title, .home-title {
  font-weight: var(--bold-font);
  text-transform: uppercase;
  a {
    text-decoration: none;
    color: inherit;
  }
}

.left-home-title::after {
  content: '';
  display: block;
  width: 70%;
  max-width: 70px;
  height: 5px;
  background-color: var(--secondary-color);
}

/* 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 {
  padding: 0.5rem 2rem;
  border-radius: 99px;
  font-weight: var(--bold-font);
  transition: var(--transition);
  text-decoration: none;
}

.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-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-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);
  }
}

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

.light-separator {
  background-color: var(--light-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);
}

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

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

.bg-pattern-animate {
  animation: slowSliding infinite linear 3000ms;
	background-position: center;
}

@keyframes slowSliding {
	0% {
		transform: translate(63.3px, -10px);
	}
	100% {
		transform: translate(-63.3px, 10px);
	}
}

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

#header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(from var(--light-shadow) r g b / 50%);
  transition: var(--transition);
  &.scrolled {
    backdrop-filter: blur(10px);
  }
  .header__content {
    width: 100%;
    max-width: 1600px;
    padding: 1.3rem 2rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__brand {
  width: 100%;
  max-width: 200px;
  .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;
      border: none;
      background-color: transparent;
      font-size: 1.1em;
    }
  }
  .menu-item {
    margin: 0 1.2rem;
  }
  .menu-item::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    margin: 0 auto;
    background-color: var(--secondary-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(--primary-color);
      box-shadow: 2px 2px 10px var(--light-shadow);
      width: max-content;
      overflow: hidden;
      .submenu-item {
        padding: 0.5rem;
        a {
          color: var(--light-color);
          padding: 0.4rem 0.5rem;
          display: block;
          text-decoration: none;
          border: none;
          background-color: transparent;
        }
        &:hover {
          background-color: var(--secondary-color);
          a {
            color: var(--primary-color);
          }
        }
      }
    }
    &:hover {
      ul {
        opacity: 1;
        pointer-events: all;
      }
    }
    &:hover .menu-item::after {
      width: 100%;
    }
  }
}

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

.mobile-menu {
  .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: "Montserrat";
          font-weight: 400;
          font-size: 0.62em;
          color: var(--dark-color);
          border: none;
        }
        .accordion-button::before {
          content: '';
          display: inline-block;
          width: 0;
          height: 3px;
          background-color: var(--secondary-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(--secondary-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(--secondary-color);
        transition: var(--transition);
      }
      .mobile-menu__item:hover::before {
        width: 1.5rem;
        margin: 0 0.7rem 0 0;
      }
    }
  }
}

/* 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;
      }
    }
  }
}

/* 
====================================
*        Secciones del Home        *
====================================
*/

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

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

/* Sección: Check-in */
.checkin {
  width: 100%;
  margin: 2rem 0;
  position: sticky;
  top: 6rem;
  left: 0;
  z-index: 9;
  .checkin__content {
    width: 100%;
    transition: var(--transition) ease-in-out;
    max-width: 1200px;
    padding: 1.5rem;
    border: 1px solid var(--light-gray-color);
    margin: 0 auto;
    background-color: var(--light-gray-color);
  }
}

.checkin.scrolled {
  .checkin__content {
    max-width: 100%;
  }
}

/* Sección: Amenities */
.amenities {
  width: 100%;
  margin: 8rem 0;
  padding: 0 2rem;
  .amenities__content {
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 0 15px var(--light-shadow);
    border-radius: 15px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    .amenities__box {
      &:first-child {
        width: 40%;
      }
      &:last-child {
        width: 60%;
      }
      .amenities__inner {
        width: 100%;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: 0;
        margin: 0;
        list-style: none;
        flex-wrap: wrap;
        &:first-child {
          border-bottom: 1px solid var(--light-gray-color);
        }
        &:last-child {
          border-bottom: none;
        }
        .amenities__item {
          width: 33.333%;
          border-right: 1px solid var(--light-gray-color);
          padding: 1rem;
          a {
            color: var(--primary-color);
            text-decoration: none;
          }
          img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin: 0 auto 1rem;
          }
          &:last-child {
            border-right: none;
          }
          &:nth-child(3) {
            border-right: none;
          }
        }
        .amenities__separator {
          width: 100%;
          height: 1px;
          background-color: var(--light-gray-color);
        }
      }
    }
  }
}

/* Sección: Habitaciones y Suites */
.rooms {
  width: 100%;
  margin: 8rem 0;
  padding: 0 2rem;
  .rooms__content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    .rooms__slider {
      width: 100%;
    }
  }
}

/* Sección: Novedades Catalinas */
/* ============================================
   SECCIÓN DE NOTICIAS - HOTEL CATALINAS 5★
   Diseño Premium y Elegante
   ============================================ */

.cnews {
  width: 100%;
  padding: 8rem 3rem;
  background: linear-gradient(135deg, 
    rgba(250, 248, 246, 1) 0%, 
    rgba(245, 242, 238, 1) 50%, 
    rgba(250, 248, 246, 1) 100%
  );
  position: relative;
  overflow: hidden;
  
  /* Textura sutil de lujo */
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.01) 2px,
        rgba(0, 0, 0, 0.01) 4px
      );
    pointer-events: none;
    z-index: 0;
  }
  
  .cnews__content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
    
    .mobile-title {
      display: none;
    }
    
    /* Columna Izquierda - Noticia Destacada */
    .cnews__box:first-child {
      position: relative;
      
      .carousel {
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 
          0 20px 60px rgba(0, 0, 0, 0.12),
          0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        
        &:hover {
          transform: translateY(-8px);
          box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.16),
            0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .carousel-item {
          position: relative;
          
          &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
              180deg,
              rgba(0, 0, 0, 0) 0%,
              rgba(0, 0, 0, 0.2) 50%,
              rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 1;
          }
          
          img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 0.7s ease-out;
          }
          
          &:hover img {
            transform: scale(1.05);
          }
        }
      }
    }
    
    /* Columna Derecha - Lista de Noticias */
    .cnews__box:last-child {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      
      .desk-title {
        display: block;
      }
    }
  }
}

/* Tag "Destacado" - Diseño Premium */
.cnews__tag {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a574 100%);
  color: #fff;
  z-index: 10;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 2px;
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  
  &::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
      transparent 0%, 
      rgba(255, 255, 255, 0.4) 50%, 
      transparent 100%
    );
  }
  
  &:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 12px 32px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

/* Controles del Carousel - Estilo Refinado */
.carousel {
  width: 100%;
  
  .carousel-control-next, 
  .carousel-control-prev {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s ease;
    
    &:hover {
      opacity: 1;
    }
  }
  
  &:hover {
    .carousel-control-next, 
    .carousel-control-prev {
      opacity: 0.7;
    }
  }
  
  .carousel-indicators {
    bottom: 2rem;
    gap: 0.5rem;
    
    button {
      width: 40px;
      height: 3px;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      border-radius: 2px;
      transition: all 0.3s ease;
      
      &.active {
        background-color: var(--secondary-color);
        width: 60px;
      }
    }
  }
}

/* Caption del Carousel - Tipografía Elegante */
.carousel-caption {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    transparent 100%
  );
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 3rem 2.5rem;
  text-align: left;
  z-index: 2;
  
  h5, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-width: 90%;
  }
}

/* Títulos de Sección */
.cnews__box .desk-title {
  &.left-home-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    
    &::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
    }
    
    a {
      transition: color 0.3s ease;
      
      &:hover {
        color: var(--secondary-color);
      }
    }
  }
  
  &:not(.left-home-title) {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-style: italic;
  }
}

/* Items de Noticias - Cards Premium */
.cnews__link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
  
  &:hover {
    transform: translateX(8px);
    
    .cnews-item {
      box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
      
      .cnews-item__inner:first-child {
        &::after {
          opacity: 1;
        }
        
        img {
          transform: scale(1.1);
        }
      }
      
      .cnews-item__title h5 {
        color: var(--secondary-color);
      }
      
      .cnews-item__cta {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
    }
  }
}

.cnews-item {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 160px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  
  .cnews-item__inner {
    &:first-child {
      width: 40%;
      min-width: 40%;
      overflow: hidden;
      position: relative;
      background-color: #f5f5f5;
      
      &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          135deg,
          rgba(0, 0, 0, 0.4) 0%,
          transparent 100%
        );
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 2;
      }
      
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
      }
    }
    
    &:last-child {
      width: 60%;
      padding: 1.75rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.75rem;
      background-color: #fff;
    }
  }
}

/* CTA Button - Botón Elegante */
.cnews-item__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #d4a574 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  border: 3px solid #fff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  line-height: 1.3;
  padding: 0 1rem;
}

/* Título de Noticia */
.cnews-item__title {
  h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Excerpt de Noticia */
.cnews-item__excerpt {
  p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
}

/* Override para WordPress */
.cnews-item p {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
}

/* Sección: Acerca de */
.about {
  width: 100%;
  height: 100svh;
  margin: 8rem 0;
  .about__content {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    .about__inner {
      width: 50%;
    }
    .about__inner:last-child {
      backdrop-filter: blur(5px);
      background-color: rgb(from var(--light-gray-color) r g b / 60%);
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      .about__info {
        width: 100%;
        max-width: 600px;
        p {
          font-weight: 500;
          font-size: 1.3em;
        }
      }
    }
  }
}

/* Sección: Catalinas Business Center */
.business {
  width: 100%;
  background-color: var(--primary-color);
  .business__content {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 600px;
    .business__box {
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
    }
    .business__box--logo {
      background-color: var(--primary-color);
    }
    .business__box--posts {
      position: relative;
      background-color: color-mix(in srgb, var(--light-gray-color) 80%, var(--light-color));
      overflow: hidden;
      &::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1000px;
        height: 1000px;
        background: linear-gradient(90deg, rgb(from var(--light-gray-color) r g b / 20%) 0%, rgb(from #f7eac2 r g b / 100%) 80%);
        transform: rotateZ(-45deg) translate(420px, 120px);
        z-index: 1;
      }
    }
  }
}

.business__brand {
  width: 100%;
  max-width: 450px;
  background-color: var(--light-color);
  box-shadow: 7px 7px 1px var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  transition: all var(--transition) ease;
  border: 1px solid rgb(from var(--secondary-color) r g b / 50%);
  position: relative;
  &:hover {
    transform: scale(1.05);
  }
  a {
    position: relative;
    width: 100%;
  }
  img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    padding: 2rem;
  }
  .brand__cta {
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 1000ms ease-in-out;
  }
  .effect-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
  }
}

.business__brand:hover .brand__cta {
  opacity: 1 !important;
}

.business__brand:hover .effect-shine {
  animation: shine 1.5s forwards ease-out;
}

@keyframes shine {
  0% {
    background-color: rgb(from var(--gray-color) r g b / 40%);
    width: 150%;
    height: 60%;
    transform: rotateZ(-45deg) translateX(-20%) translateY(-300%);
  }
  100% {
    background-color: rgb(from var(--gray-color) r g b / 0%);
    width: 150%;
    height: 60%;
    transform: rotateZ(-45deg) translateX(-20%) translateY(100%);
  }
}

.business__posts-grid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem;
}

.business__post-item {
  text-decoration: none;
  position: relative;
  z-index: 2;
  transition: transform var(--transition) ease;
  &:hover {
    transform: scale(1.1);
    .business__post-circle {
      box-shadow: 0 8px 20px rgb(from var(--secondary-color) r g b / 30%);
    }
  }
}

.business__post-circle {
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background-color: var(--light-color);
  border: 3px solid var(--light-gray-color);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 4px 10px rgb(from var(--dark-color) r g b / 10%);
  transition: all var(--transition) ease;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
}

/* Sección: Partners */
.partners {
  width: 100%;
  margin: 7rem 0;
  .partners__content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
  }
}

/* Partner Tolomeo */
.p-tolomeo {
  width: 100%;
  margin: 4rem auto;
  .p-tolomeo__inner {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgb(from var(--light-gray-color) r g b / 20%) 0%, rgb(from var(--secondary-color) r g b / 10%) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgb(from var(--dark-color) r g b / 10%);
    position: relative;
    overflow: hidden;
    &::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgb(from var(--secondary-color) r g b / 20%), transparent);
      transform: rotate(45deg);
      pointer-events: none;
    }
  }
  .p-tolomeo__box {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .p-tolomeo__logo {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgb(from var(--dark-color) r g b / 15%);
    transition: all var(--transition) ease;
    position: relative;
    overflow: hidden;
    &::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgb(from var(--light-color) r g b / 60%), transparent);
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
      transition: transform 0.6s ease;
    }
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgb(from var(--secondary-color) r g b / 25%);
      &::after {
        transform: translateX(100%) translateY(100%) rotate(45deg);
      }
    }
    img {
      width: 100%;
      height: auto;
      display: block;
      position: relative;
      z-index: 1;
    }
  }
  .p-tolomeo__info {
    width: 100%;
    max-width: 500px;
    h3 {
      font-size: 2.2em;
      margin-bottom: 1.5rem;
      font-weight: var(--bold-font);
      position: relative;
      display: inline-block;
      &::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 80px;
        height: 4px;
        background-color: var(--secondary-color);
        border-radius: 2px;
      }
    }
    p {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 1rem;
      color: var(--dark-gray-color);
    }
  }
}

.more-partners {
  width: 100%;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  .more-partners__content {
    width: 100%;
    max-width: 1400px;
  }
  .more-partners__cat {
    width: 95%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 1rem;
    .more-partners__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);
      .more-partners__title-text {
        text-transform: uppercase;
        font-weight: var(--bold-font);
        text-align: center;
      }
    }
    .more-partners__primary-bg-color {
      background-color: var(--primary-color);
    }
    .more-partners__secondary-bg-color {
      background-color: var(--secondary-color);
    }
    .more-partners__terciary-bg-color {
      background-color: var(--terciary-color);
    }
    .more-partners__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);
    }
  }
}

/* Sección: Agenda */
.agenda {
  width: 100%;
  margin: 8rem 0;
  .agenda__content {
    padding: 0 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    .agenda__graphic-title {
      width: 100%;
      padding: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      a {
        display: inline;
        text-decoration: none;
        img {
          width: 100%;
          max-width: 340px;
          height: auto;
          object-fit: contain;
        }
      }
    }
    .agenda__inner {
      width: 100%;
      .agenda__box {
        width: 100%;
        margin: 2rem 0;
      }
      .agenda__box:last-child {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        flex-wrap: wrap;
      }
    }
  }
}

.agenda-last-item {
  width: 100%;
  height: 450px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
  .agenda-last-item__tag {
    padding: 0.5rem 2.4rem;
    background-color: var(--gray-color);
    color: var(--light-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-weight: 800;
    font-size: 1.2em;
    clip-path: polygon(0 0, 100% 0, 93% 50%, 100% 100%, 0 100%);
  }
  .agenda-last-item__info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0) 100%);
    color: var(--light-color);
    font-family: 'Lora' !important;
    width: 100%;
    padding: 1.5rem;
    .agenda-last-item__date {
      color: var(--light-color);
      font-weight: 300;
      font-size: 5em;
      span {
        font-weight: 800 !important;
      }
    }
    .agenda-last-item__title {
      margin-bottom: 0;
    }
    .agenda-last-item__excerpt {
      height: 42px;
      font-size: 1em;
      margin: 1rem 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

.agenda-item {
  width: 100%;
  max-width: 360px;
  height: 360px;
  margin: 1rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
  .agenda-item__tag {
    padding: 0.5rem 2.4rem;
    background-color: var(--gray-color);
    color: var(--light-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    font-weight: 800;
    font-size: 1.2em;
    clip-path: polygon(0 0, 100% 0, 93% 50%, 100% 100%, 0 100%);
  }
  .agenda-item__info {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.74) 30%, rgba(0, 0, 0, 0) 100%);
    color: var(--light-color);
    font-family: 'Lora' !important;
    width: 100%;
    padding: 1.5rem;
    .agenda-item__date {
      color: var(--light-color);
      font-weight: 300;
      font-size: 5em;
      span {
        font-weight: 800 !important;
      }
    }
    .agenda-item__title {
      margin-bottom: 0;
    }
    .agenda-item__excerpt {
      height: 42px;
      font-size: 1em;
      margin: 1rem 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
  }
}

/* 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: 5rem;
        span {
          text-align: end;
          display: inline-block;
          width: 6.5rem;
          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;
        }
      }
    }
  }
}

/* Entradas en archive.php */
.news {
  width: 100%;
  .news__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    .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(--gray-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(--gray-color);
      height: 16rem;
      border-radius: 25px;
      overflow: hidden;
      position: relative;
      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .news-item__thumbnail-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    }
    .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;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
    .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;
          }
        }
      }
    }
  }
}

/* Donde encontrarnos */
.where {
  width: 100%;
  padding: 3rem 2rem;
  background-color: rgb(from var(--light-gray-color) r g b / 40%);
  .where__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    .where__map {
      width: 100%;
      height: 270px;
      border-radius: 150px;
      border: 2px solid var(--primary-color);
      position: relative;
      overflow: hidden;
      .ornament__location-pin {
        position: absolute;
        overflow: hidden;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        max-width: 263px;
        height: 100%;
        max-height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10em;
        color: var(--primary-color);
        background-color: var(--light-color);
        border-radius: 150px;
        outline: 2px solid var(--primary-color);
        z-index: 2;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      iframe {
        width: 100%;
        height: 100%;
      }
    }
  }
}

/* Footer */
#footer {
  width: 100%;
  background-color: var(--primary-color) !important;
  position: relative;
  z-index: 3;
  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;
    background-color: var(--primary-color);
    .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: 300px;
        }
      }
      .footer__info {
        list-style: none;
        padding: 0;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        li {
          margin: 0.5rem 0;
        }
        li:first-child {
          img {
            width: 100%;
            max-width: 150px;
            margin: 0 auto 1rem auto;
          }
        }
      }
    }
    .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__map {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-shadow: 7px 7px 1px var(--secondary-color);
  iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}

.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;
    img {
      width: 27px;
      margin-right: 0.5rem;
    }
    color: var(--light-color);
  }
}

/*
###################################################################################
                DEFINICIONES DE PÁGINAS, CATEGORÍAS Y ENTRADAS
###################################################################################
*/
.entry {
  margin-top: 8rem;
  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 {
        position: sticky;
        top: 1rem;
        .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);
                }
              }
            }
          }
        }
      }
    }
  }
}

/* Categorías */
.categories {
  width: 100%;
  padding: 10rem 2rem 7rem;
  .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;
        margin: 10rem 0;
      }
    }
  }
}

.categories-form {
  width: 100%;
  .categories-form__content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 25px;
    box-shadow: 5px 5px 5px var(--light-shadow);
    border: 1px solid rgb(from var(--light-gray-color) r g b / 50%);
  }
}

.graphic-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  img {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
  }
}

/* Pages */
.page {
  width: 100%;
  background-color: var(--light-gray-color);
  margin-top: 8rem;
  .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, #ffffff00 11%, #0000009e 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(--secondary-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 {
        border: 1px solid var(--light-gray-color);
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        h1, h2, h3, h4, h5, h6 {
          color: var(--primary-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;
        }
      }
    }
  }
}

/* Declaraciones varias */
.awards-slider__content {
  display: flex;
  align-items: flex-end;
}

/* Formulario de consulta de habitaciones */
input.form-room, input[type="date"].form-room, select.form-room, textarea.form-room {
  padding: 0.7rem 1rem;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  width: 100%;
  margin: 0.5rem 0;
}

input.form-room:focus {
  outline: 4px solid rgb(from var(--primary-color) r g b / 30%);
}

.check-in-out-group {
  margin: 0.5rem 0;
  width: 100%;
  p {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    span {
      width: calc(50% - 20px);
      display: block;
    }
  }
}

textarea.form-room {
  height: 6rem;
}

input[type="submit"].form-room {
  padding: 0.5rem 2rem;
  width: 100%;
  max-width: 200px;
  align-self: center;
  justify-self: center;
  margin: 0 auto;
  font-weight: 700;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  border: 2px solid var(--secondary-color);
  transition: var(--transition);
  margin: 1rem 0;
  &:hover {
    background-color: var(--light-color);
    color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
  };
}

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

@media (width < 1441px) {
  .campaigns {
    .campaigns__content {
      .campaigns__box:last-child {
        .buttons-center {
          width: 100%;
        }
      }
    }
  }
  .entry {
    .entry__content {
      max-width: 1024px;
      .entry__box:first-child {
        .entry__header {
          .entry__att-image {
            height: calc((1024px - (1024px * 0.4)) / 1.5);
          }
        }
      }
    }
  }
}

@media (width < 1200px) {
  .where {
    .where__content {
      .where__map {
        max-width: 94vw;
        max-height: 21.5vw;
        .ornament__location-pin {
          font-size: 13vw;
          max-width: 21vw;
          max-height: 22vw;
        }
      }
    }
  }
}

@media (width < 1100px) {
  .entry {
    .entry__content {
      .entry__box:first-child {
        .entry__header {
          .entry__att-image {
            height: 37vw;
          }
        }
      }
    }
  }
}

@media (width < 1024px) {
  .cnews {
    padding: 6rem 2rem;
    
    .cnews__content {
      grid-template-columns: 1fr;
      gap: 3rem;
      
      .mobile-title {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 2rem;
        text-align: center;
        
        &::after {
          content: '';
          display: block;
          width: 80px;
          height: 2px;
          background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
          margin: 1rem auto 0;
        }
      }
      
      .cnews__box {
        margin: 0;
        
        &:first-child {
          order: 1;
          
          .carousel {
            .carousel-item img {
              height: 450px;
            }
          }
        }
        
        &:last-child {
          order: 2;
          gap: 1.5rem;
        }
        
        .desk-title {
          display: none;
        }
      }
    }
  }
  
  .cnews__tag {
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.6rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  
  .carousel-caption {
    padding: 2rem 2rem 2rem;
    
    h5, h3 {
      font-size: 1.6rem;
    }
    
    p {
      font-size: 0.95rem;
    }
  }
  
  .cnews-item {
    height: 140px;
    
    .cnews-item__inner:last-child {
      padding: 1.25rem 1.5rem;
      gap: 0.5rem;
    }
  }
  
  .cnews-item__cta {
    width: 90px;
    height: 90px;
    font-size: 0.75rem;
  }
  
  .cnews-item__title h5 {
    font-size: 1.1rem;
  }
  
  .cnews-item__excerpt p {
    font-size: 0.85rem;
  }
}

@media (width < 992px) {
  .main-menu {
    display: none;
  }
  .header__mobile-button {
    display: block;
  }
  .campaigns {
    .campaigns__content {
      .campaigns__box:first-child, .campaigns__box:last-child {
        width: 100%;
      }
    }
  }
  .awards {
    .awards__content {
      .awards__box {
        width: 100%;
        margin: 1rem 0;
      }
    }
  }
}
@media (width < 900px) {
  .services-menu {
    .service-item {
      .service-item__box {
        width: 100%;
      }
    }
  }
  .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);
      }
    }
  }
  .amenities {
    .amenities__content {
      .amenities__box:first-child, .amenities__box:last-child {
        width: 100%;
      }
      .amenities__box:first-child {
        margin-bottom: 2rem;
      }
    }
  }
}

@media (width < 850px) {
  .agenda {
    .agenda__content {
      .agenda__inner {
        .agenda__box:last-child {
          justify-content: space-evenly;
        }
      }
    }
  }
}

@media (width < 768px) {
  .services-menu {
    .services-submenu__nav {
      .nav {
        .nav-link {
          width: calc(33% - 1rem);
        }
      }
    }
  }
  .sede {
    .sede__content {
      .sede__box {
        width: 100%;
      }
    }
  }
  
  /* Estilos cnews para tablets pequeñas */
  .cnews {
    padding: 4rem 1.5rem;
    
    .cnews__content {
      gap: 2.5rem;
      
      .mobile-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
      }
      
      .cnews__box:first-child {
        .carousel {
          .carousel-item img {
            height: 350px;
          }
        }
      }
    }
  }
  
  .cnews__tag {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  
  .carousel-caption {
    padding: 1.5rem 1.5rem 1.5rem;
    
    h5, h3 {
      font-size: 1.3rem;
      margin-bottom: 0.75rem;
    }
    
    p {
      font-size: 0.9rem;
      -webkit-line-clamp: 2;
      line-clamp: 2;
    }
  }
  
  .carousel {
    .carousel-control-next, 
    .carousel-control-prev {
      width: 12%;
      opacity: 0.5;
    }
    
    .carousel-indicators {
      bottom: 1rem;
      
      button {
        width: 30px;
        height: 2px;
        
        &.active {
          width: 45px;
        }
      }
    }
  }
  
  .cnews-item {
    height: auto;
    flex-direction: column;
    
    .cnews-item__inner {
      &:first-child {
        width: 100% !important;
        min-width: 100% !important;
        height: 200px;
      }
      
      &:last-child {
        width: 100% !important;
        padding: 1.5rem;
        gap: 0.75rem;
      }
    }
  }
  
  .cnews-item__cta {
    width: 80px;
    height: 80px;
    font-size: 0.7rem;
    border-width: 2px;
  }
  
  .cnews-item__title h5 {
    font-size: 1.15rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .cnews-item__excerpt p {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .cnews__link:hover {
    transform: translateX(0);
  }
  .about {
    .about__content {
      .about__inner {
        width: 100%;
      }
      .about__inner:first-child {
        height: 450px;
      }
    }
  }
  .p-tolomeo {
    .p-tolomeo__inner {
      padding: 2rem 1.5rem;
      gap: 2rem;
    }
    .p-tolomeo__box {
      min-width: 100%;
      min-height: 280px;
    }
    .p-tolomeo__box:last-child {
      min-height: 350px;
    }
    .p-tolomeo__info {
      h3 {
        font-size: 1.8em;
      }
      p {
        font-size: 1em;
      }
    }
  }
  .business {
    .business__content {
      flex-direction: column;
      .business__box {
        width: 100%;
        min-height: 400px;
      }
    }
  }
  .business__brand {
    max-width: 350px;
  }
  .business__posts-grid {
    gap: 1rem;
  }
  .business__post-circle {
    width: 100px;
    height: 100px;
  }
}

@media (width < 720px) {
  .who {
    .who__content {
      .who__inner {
        width: 100%;
        .who__info {
          width: 100%;
        }
      }
      .who__inner:last-child {
        height: 25rem;
      }
    }
  }
  .services-menu {
    padding: 3rem 0;
  }
  .more-partners {
    .more-partners__cat {
      .more-partners__title,
      .more-partners__slider {
        width: 100%;
        margin: 0.5rem;
      }
      .more-partners__title {
        height: auto;
        padding: 1rem;
        border-radius: 15px 15px 0 0;
      }
      .more-partners__slider {
        border-radius: 0 0 15px 15px;
      }
    }
  }
}

@media (width < 620px) {
  #footer {
    .footer__content {
      gap: 0;
      .footer__inner {
        width: 100%;
        margin: 1rem 0;
      }
    }
  }
  .amenities {
    .amenities__content {
      .amenities__box:last-child {
        .amenities__inner {
          .amenities__item {
            width: 50%;
            border: none;
          }
          .amenities__separator {
            display: none;
          }
        }
      }
    }
  }
}

@media (width < 576px) {
  /* Headings */
  h1 {
    font-size: 2.4em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.6em;
  }
  h4 {
    font-size: 1.3em;
  }
  h5 {
    font-size: 1.1em;
  }
  h6 {
    font-size: 0.9em;
  }
  .services {
    .services-menu__nav {
      .nav-pills {
        .nav-link {
          width: 100%;
          margin: 0.5rem 0;
        }
      }
    }
  }
}

@media (width < 512px) {
  .services {
    .services__content {
      padding: 3rem 0.5rem;
    }
  }
}

@media (width < 480px) {
  /* Headings */
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.3em;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: 0.8em;
  }
  p, span {
    font-size: 0.8em;
  }
  
  /* Estilos cnews para móviles */
  .cnews {
    padding: 3rem 1rem;
    
    .cnews__content {
      gap: 2rem;
      
      .mobile-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
      }
      
      .cnews__box:first-child {
        .carousel {
          .carousel-item img {
            height: 280px;
          }
        }
      }
      
      .cnews__box:last-child {
        gap: 1.25rem;
      }
    }
  }
  
  .cnews__tag {
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.4rem 1.25rem;
    font-size: 0.6rem;
    letter-spacing: 1px;
  }
  
  .carousel-caption {
    padding: 1rem 1rem 1rem;
    
    h5, h3 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    
    p {
      font-size: 0.85rem;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      max-width: 100%;
    }
  }
  
  .carousel {
    .carousel-control-next, 
    .carousel-control-prev {
      display: none;
    }
    
    .carousel-indicators {
      bottom: 0.75rem;
      gap: 0.35rem;
      
      button {
        width: 25px;
        height: 2px;
        
        &.active {
          width: 35px;
        }
      }
    }
  }
  
  .cnews-item {
    .cnews-item__inner {
      &:first-child {
        height: 180px;
      }
      
      &:last-child {
        padding: 1.25rem;
        gap: 0.65rem;
      }
    }
  }
  
  .cnews-item__cta {
    width: 70px;
    height: 70px;
    font-size: 0.65rem;
    padding: 0 0.75rem;
  }
  
  .cnews-item__title h5 {
    font-size: 1.05rem;
  }
  
  .cnews-item__excerpt p {
    font-size: 0.85rem;
  }
  .services-menu {
    .service-item {
      border-radius: 25px 25px 25px 5px;
      .service-item__box:last-child {
        border-radius: 25px 25px 25px 5px;
        max-height: 15rem;
      }
    }
    .service-item:nth-child(1) {
      top: 5rem;
    }
    .service-item:nth-child(2) {
      top: 6rem;
    }
    .service-item:nth-child(3) {
      top: 7rem;
    }
    .service-item:nth-child(4) {
      top: 8rem;
    }
    .service-item:nth-child(5) {
      top: 9rem;
    }
  }
  .entry {
    padding: 0;
    .entry__content {
      width: 100%;
      max-width: none;
      margin: 0;
      padding: 1rem;
    }
  }
}