 html {
     scroll-behavior: smooth !important;
 }


 /* ==============================
    INICIO: BOTÓN ESTILO PÍLDORA 
=================================== */

 .pxp-primary-cta {
     display: inline-flex !important;
     align-items: center;
     justify-content: center;
     background-color: #4A5B29 !important;
     /* Verde oliva oficial de la marca */
     color: #ffffff !important;
     /* Texto en blanco puro */
     font-size: 0.85rem !important;
     /* Tipografía compacta y elegante */
     font-weight: 700 !important;
     letter-spacing: 1.5px !important;
     /* Espaciado de letras moderno para el uppercase */
     padding: 12px 35px !important;
     /* Proporciones estilizadas de botón premium */
     border-radius: 50px !important;
     /* Cambiado a estilo píldora ultra suave */
     border: 2px solid #4A5B29 !important;
     text-decoration: none !important;
     box-shadow: 0 4px 15px rgba(74, 91, 41, 0.12) !important;
     transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
 }

 .pxp-primary-cta::after {
     display: none !important;
     /* Oculta por completo el guion original de la plantilla */
     content: none !important;
 }

 .pxp-primary-cta:hover {
     background-color: #ffffff !important;
     /* Inversión limpia a fondo blanco */
     color: #4A5B29 !important;
     /* El texto pasa al verde oliva */
     border-color: #4A5B29 !important;
     /* El borde sostiene la estructura del botón */
     box-shadow: 0 8px 22px rgba(74, 91, 41, 0.2) !important;
     /* Sombra flotante más pronunciada */
     transform: translateY(-2px) !important;
     /* Micro-elevación suave */
 }

 .pxp-primary-cta,
 .pxp-primary-cta * {
     cursor: pointer !important;
 }

 /* ==============================
    FIN: BOTÓN ESTILO PÍLDORA 
=================================== */


 /* ==========================================
   INICIO SECCIÓN: HERO / BANNER
   ========================================== */


 .pxp-hero-adjusted {
     padding-top: 110px !important;
     position: relative;
     overflow: hidden;
     /* Evita que el video se desborde del contenedor */
 }

 .gt-banner-title {
     font-size: 4rem !important;
     font-weight: 800 !important;
     line-height: 1.15 !important;
     margin-bottom: 20px !important;
 }

 .gt-banner-description {
     font-size: 1.15rem !important;
     line-height: 1.5 !important;
     opacity: 0.95;
     margin-bottom: 35px !important;
     font-weight: 400;
 }

 .gt-banner-cta-container {
     max-width: 460px;
     /* Ancho máximo controlado para mantener proporción */
     width: 100%;
 }

 .gt-banner-cta-row {
     display: flex !important;
     gap: 15px !important;
     margin-bottom: 15px !important;
     width: 100%;
 }

 .gt-btn-primary {
     background-color: #5f632d !important;
     color: #ffffff !important;
     font-weight: 700 !important;
     font-size: 0.85rem !important;
     letter-spacing: 0.8px;
     height: 50px !important;
     border-radius: 30px !important;
     /* El radio del 30% visual exacto */
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     flex: 1;
     border: 2px solid #5f632d !important;
     transition: all 0.3s ease !important;
 }

 .gt-btn-primary:hover {
     background-color: #43471f !important;
     border-color: #43471f !important;
     color: #ffffff !important;
     transform: translateY(-2px);
 }

 .gt-btn-tour {
     background-color: transparent !important;
     color: #ffffff !important;
     font-weight: 700 !important;
     font-size: 0.85rem !important;
     letter-spacing: 0.8px;
     height: 50px !important;
     border-radius: 30px !important;
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     flex: 1;
     border: 2px solid #ffffff !important;
     transition: all 0.3s ease !important;
 }

 .gt-btn-tour i {
     margin-right: 8px;
     font-size: 1.1rem;
 }

 .gt-btn-tour:hover {
     background-color: #ffffff !important;
     color: #111111 !important;
     transform: translateY(-2px);
 }

 .gt-btn-agenda {
     background-color: #5f632d !important;
     color: #ffffff !important;
     font-weight: 700 !important;
     font-size: 0.9rem !important;
     letter-spacing: 1px;
     height: 52px !important;
     border-radius: 30px !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     width: 100% !important;
     border: 2px solid #5f632d !important;
     box-shadow: 0 4px 15px rgba(95, 99, 45, 0.3) !important;
     transition: all 0.3s ease !important;
 }

 .gt-btn-agenda i {
     margin-right: 10px;
     font-size: 1.05rem;
 }

 .gt-btn-agenda:hover {
     background-color: #ffffff !important;
     border-color: #ffffff !important;
     color: #5f632d !important;
     box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
     transform: translateY(-2px);
 }

 .gt-banner-scroll-down {
     position: absolute;
     bottom: 25px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     text-align: center;
 }

 .gt-scroll-link {
     color: #ffffff !important;
     font-size: 2.2rem;
     display: inline-block;
     transition: all 0.3s ease;
     animation: bounceScroll 2s infinite;
 }

 .gt-scroll-link:hover {
     color: #5f632d !important;
     opacity: 1;
 }

 @keyframes bounceScroll {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-8px);
     }

     60% {
         transform: translateY(-4px);
     }
 }

 @media (max-width: 1366px) {
     .gt-banner-title {
         font-size: 2.8rem !important;
         margin-bottom: 12px !important;
     }

     .gt-banner-description {
         font-size: 1rem !important;
         margin-bottom: 25px !important;
     }

     .gt-btn-primary,
     .gt-btn-tour {
         height: 44px !important;
         font-size: 0.8rem !important;
     }

     .gt-btn-agenda {
         height: 46px !important;
         font-size: 0.85rem !important;
     }
 }

 @media (max-width: 576px) {
     .gt-banner-title {
         font-size: 2.2rem !important;
     }

     .gt-banner-cta-row {
         flex-direction: column !important;
         gap: 10px !important;
     }

     .gt-banner-description br {
         display: none;
         /* Fluido en móviles */
     }
 }


 .pxp-hero-adjusted {
     padding-top: 110px !important;
     position: relative;
     overflow: hidden;
     /* Evita que el video se desborde si hay variaciones de tamaño */
 }

 .pxp-hero-caption {
     position: relative;
     z-index: 3;
     /* Por encima del video y de la opacidad */
 }

 .pxp-hero-opacity {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 2;
     background-color: rgba(0, 0, 0, 0.4);
     /* Ajusta el último número (0.4) si necesitas más o menos oscuridad para leer el texto */
 }

 .gt-banner-video-bg {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 100%;
     height: 100%;
     min-width: 100%;
     min-height: 100%;
     transform: translate(-50%, -50%);
     object-fit: cover;
     object-position: bottom;
     z-index: 1;
     pointer-events: none;

     /* 1. Mantenemos la opacidad en 1 siempre para ver el poster de fondo */
     opacity: 1;

     /* 2. Cargamos el poster como imagen de fondo del CSS */
     background-image: url('../video/hero-poster.png');
     /* Ajusta la ruta a tu carpeta de CSS */
     background-size: cover;
     background-position: bottom;
     background-repeat: no-repeat;
 }


 /* ==========================================
   FIN SECCIÓN: HERO / BANNER
   ========================================== */










 /* ==========================================
   INICIO SECCIÓN: ESTADÍSTICAS
   ========================================== */

 .gt-stats-section {
     width: 100% !important;
     /* Degradado sutil de fondo que combina con la marca */
     background: #EDEFEA !important;
     padding: 80px 0 !important;
     box-sizing: border-box;
 }

 .gt-stats-grid {
     display: flex !important;
     flex-direction: row !important;
     justify-content: space-between !important;
     align-items: stretch !important;
     /* Estira las tarjetas al mismo alto */
     flex-wrap: wrap !important;
     width: 100% !important;
     gap: 20px !important;
 }

 .gt-stat-item {
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     text-align: center !important;
     background-color: #ffffff !important;
     border-radius: 16px !important;
     padding: 35px 20px !important;
     flex: 1 1 calc(25% - 20px) !important;
     /* 4 columnas exactas en escritorio */
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
     border: 1px solid rgba(74, 91, 41, 0.08) !important;
     transition: transform 0.3s ease, box-shadow 0.3s ease !important;
 }

 .gt-stat-item:hover {
     transform: translateY(-5px) !important;
     box-shadow: 0 10px 30px rgba(74, 91, 41, 0.08) !important;
 }

 /* Contenedor del Icono */
 .gt-stat-icon-wrapper {
     width: 60px !important;
     height: 60px !important;
     background-color: rgba(95, 99, 45, 0.1) !important;
     /* Fondo suave del verde de marca */
     border-radius: 50% !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     margin-bottom: 20px !important;
     transition: background-color 0.3s ease !important;
 }

 .gt-stat-icon-wrapper i {
     color: #5f632d !important;
     /* Tu verde #5f632d */
     font-size: 24px !important;
 }

 .gt-stat-item:hover .gt-stat-icon-wrapper {
     background-color: #5f632d !important;
 }

 .gt-stat-item:hover .gt-stat-icon-wrapper i {
     color: #ffffff !important;
 }

 .gt-stat-number {
     color: #4a5b29 !important;
     font-size: 1.8rem !important;
     font-weight: 800 !important;
     line-height: 1.2 !important;
     margin-bottom: 8px !important;
     letter-spacing: -0.5px;
 }

 .gt-stat-label {
     color: #555555 !important;
     font-size: 0.95rem !important;
     font-weight: 500 !important;
     line-height: 1.4 !important;
     text-transform: none;
 }

 @media (max-width: 991px) {
     .gt-stat-item {
         flex: 1 1 calc(50% - 20px) !important;
         /* 2 columnas en tablets */
         padding: 30px 15px !important;
     }
 }

 @media (max-width: 576px) {
     .gt-stats-section {
         padding: 60px 0 !important;
     }

     .gt-stat-item {
         flex: 1 1 100% !important;
         /* 1 columna completa en móviles */
         margin-bottom: 10px !important;
     }
 }


 /* ==========================================
   FIN SECCIÓN: ESTADÍSTICAS
   ========================================== */



 /* ==========================================
   INICIO SECCIÓN: AMENIDADES
   ========================================== */
 .gt-amenities-section {
     background-color: #EDEFEA !important;
     /* El color solicitado para toda la sección */
     width: 100% !important;
     box-sizing: border-box;
 }

 .gt-amenity-details {
     display: flex !important;
     flex-direction: column !important;
     justify-content: flex-end !important;
 }

 .gt-amenity-subtitle {
     font-size: 0.75rem !important;
     font-weight: 600 !important;
     color: #ffffff !important;
     opacity: 0.85;
     letter-spacing: 1px;
     margin-bottom: 4px !important;
     text-transform: uppercase;
 }

 .gt-amenity-title {
     font-size: 1.6rem !important;
     font-weight: 700 !important;
     color: #ffffff !important;
     line-height: 1.2 !important;
 }

 .gt-amenities-section .pxp-text-light {
     color: #444444 !important;
 }

 /* ==========================================
   FIN SECCIÓN: AMENIDADES
   ========================================== */





 /* ==========================================
   INICIO SECCIÓN: UBICACIÓN (ICONOS)
   ========================================== */

 .gt-location-section {
     width: 100% !important;
     padding: 50px 0 60px 0 !important;
     margin-top: 0 !important;
     background-color: #faf9f8 !important;
     /* El color solicitado para el fondo completo */
 }

 .gt-location-subtitle {
     font-color: #4a522d !important;
     color: #4a522d !important;
     font-weight: 700 !important;
     font-size: 0.95rem !important;
     letter-spacing: 0.8px;
     display: block;
     margin-bottom: 8px !important;
 }

 .gt-location-title {
     color: #111111 !important;
     font-size: 2.2rem !important;
     font-weight: 800 !important;
     line-height: 1.2 !important;
     margin: 0 !important;
 }

 @media (min-width: 992px) {
     .gt-location-grid-wrapper {
         border-left: 1px solid #e2e5dd !important;
         padding-left: 40px !important;
     }
 }

 .gt-location-grid {
     display: grid !important;
     grid-template-columns: repeat(5, 1fr) !important;
     gap: 20px !important;
     /* Espacio equilibrado entre columnas extendidas */
     width: 100%;
 }

 .gt-location-item {
     display: flex !important;
     flex-direction: column !important;
     align-items: center !important;
     text-align: center !important;
     padding: 10px 0 !important;
     position: relative !important;
     width: 100% !important;
 }

 @media (min-width: 992px) {
     .gt-location-item:not(:last-child)::after {
         content: "" !important;
         position: absolute !important;
         right: -10px !important;
         top: 20% !important;
         height: 60% !important;
         width: 1px !important;
         background-color: #e2e5dd !important;
     }
 }

 .gt-location-icon {
     color: #4a522d !important;
     background-color: #f4f5f2 !important;
     width: 64px;
     height: 64px;
     border-radius: 50%;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     margin-bottom: 14px !important;
     transition: all 0.3s ease;
 }

 .gt-location-item:hover .gt-location-icon {
     background-color: #4a522d !important;
     color: #ffffff !important;
     transform: translateY(-2px);
 }

 .gt-location-place {
     color: #111111 !important;
     font-weight: 700 !important;
     font-size: 1.2rem !important;
     line-height: 1.3 !important;
     margin-bottom: 3px !important;
 }

 .gt-location-time {
     color: #777777 !important;
     font-size: 0.8rem !important;
     font-weight: 500 !important;
 }

 @media (max-width: 991px) {
     .gt-location-section {
         padding: 40px 0 !important;
     }

     .gt-location-grid {
         grid-template-columns: repeat(3, 1fr) !important;
         gap: 20px !important;
     }

     .gt-location-title {
         font-size: 1.85rem !important;
     }
 }

 @media (max-width: 576px) {
     .gt-location-grid {
         grid-template-columns: repeat(2, 1fr) !important;
     }
 }



 /* ==========================================
   FIN SECCIÓN: UBICACIÓN (ICONOS)
   ========================================== */





 /* ==========================================
   INICIO SECCIÓN: HISTORIA
   ========================================== */

 .gt-history-section {
     width: 100% !important;
     background-color: #EDEFEA !important;
     padding: 50px 0 !important;
     /* Reducido a la mitad para evitar que sea tan alta */
     overflow: hidden;
 }

 .no-gutters {
     margin-right: 0;
     margin-left: 0;
 }

 .no-gutters>[class*="col-"] {
     padding-right: 0;
     padding-left: 0;
 }

 /* Bloque Izquierdo */
 .gt-history-image-col {
     padding-left: 5% !important;
     padding-right: 3% !important;
 }

 .gt-history-image-wrapper {
     width: 100%;
     overflow: hidden;
     border-radius: 20px !important;
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07) !important;
 }

 .gt-history-img {
     width: 100%;
     height: auto;
     object-fit: cover;
     display: block;
     transition: transform 0.6s ease !important;
 }

 .gt-history-image-wrapper:hover .gt-history-img {
     transform: scale(1.02);
 }

 /* Bloque Derecho */
 .gt-history-content-col {
     padding-right: 6% !important;
     padding-left: 4% !important;
 }

 .gt-history-content-box {
     max-width: 580px;
     width: 100%;
 }

 .gt-history-subtitle {
     color: #4a522d !important;
     font-size: 0.95rem !important;
     font-weight: 700 !important;
     letter-spacing: 2px !important;
     display: inline-block;
     margin-bottom: 10px !important;
 }

 .gt-history-title {
     color: #111111 !important;
     font-size: 1.8rem !important;
     font-weight: 700 !important;
     line-height: 1.25 !important;
     margin-bottom: 15px !important;
 }

 .gt-history-text {
     color: #444444 !important;
     font-size: 1rem !important;
     line-height: 1.6 !important;
     text-align: justify !important;
     margin-bottom: 25px !important;
 }

 .gt-history-badges-list {
     display: flex !important;
     flex-direction: column !important;
     gap: 12px !important;
     /* Distancia perfecta entre filas */
     width: 100% !important;
 }

 .gt-badge-item-v2 {
     display: inline-flex !important;
     /* Cambiado a inline-flex para no forzar bloque completo */
     align-items: center !important;
     background-color: rgba(255, 255, 255, 0.45) !important;
     padding: 10px 24px 10px 16px !important;
     /* Proporción premium de capsula */
     border-radius: 50px !important;
     width: max-content !important;
     /* ¡La clave! El óvalo mide solo lo que mide el texto */
     max-width: 100% !important;
     transition: all 0.3s ease !important;
     border: 1px solid rgba(255, 255, 255, 0.25) !important;
 }

 .gt-badge-item-v2:hover {
     background-color: #ffffff !important;
     transform: translateX(6px) !important;
     box-shadow: 0 6px 15px rgba(74, 91, 41, 0.04) !important;
 }

 .gt-badge-icon-v2 {
     width: 36px !important;
     height: 36px !important;
     background-color: #ffffff !important;
     border-radius: 50% !important;
     display: flex !important;
     align-items: center !important;
     justify-content: center !important;
     margin-right: 14px !important;
     flex-shrink: 0;
     transition: all 0.3s ease !important;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) !important;
 }

 .gt-badge-icon-v2 i {
     color: #5f632d !important;
     font-size: 15px !important;
 }

 .gt-badge-item-v2:hover .gt-badge-icon-v2 {
     background-color: #5f632d !important;
 }

 .gt-badge-item-v2:hover .gt-badge-icon-v2 i {
     color: #ffffff !important;
 }

 .gt-badge-info-v2 {
     display: flex !important;
     flex-direction: row !important;
     align-items: center !important;
     gap: 12px !important;
     white-space: nowrap !important;
     /* Evita saltos de línea raros */
 }

 .gt-badge-number-v2 {
     color: #4a5b29 !important;
     font-size: 1.2rem !important;
     font-weight: 800 !important;
     line-height: 1 !important;
 }

 .gt-badge-label-v2 {
     color: #222222 !important;
     font-size: 0.85rem !important;
     font-weight: 600 !important;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 @media (max-width: 576px) {
     .gt-badge-item-v2 {
         width: 100% !important;
         /* En móviles sí toma el ancho completo para evitar desbordar */
         display: flex !important;
         border-radius: 25px !important;
     }

     .gt-badge-info-v2 {
         white-space: normal !important;
         /* Permite quiebre natural en pantallas ultra pequeñas */
         flex-wrap: wrap !important;
     }
 }



 /* ==========================================
   FIN SECCIÓN: HISTORIA
   ========================================== */











 /* ==========================================
   INICIO SECCIÓN: COTIZACIÓN / CTA
   ========================================== */

 .gt-quote-section-wide {
     width: 100% !important;
     background-color: #faf9f6 !important;
     padding: 40px 0 !important;
     /* Altura vertical compacta y directa */
     overflow: hidden;
 }

 .gt-quote-flex-container {
     display: flex !important;
     width: 100% !important;
     align-items: center !important;
     flex-direction: row !important;
 }

 .gt-quote-text-block {
     flex: 0 0 30% !important;
     width: 30% !important;
     padding-left: 11% !important;
     /* Desplazamiento calculado hacia el centro-derecha */
     padding-right: 2% !important;
     box-sizing: border-box;
     display: flex !important;
     justify-content: flex-end !important;
 }

 .gt-quote-internal-wrapper {
     display: flex !important;
     flex-direction: column !important;
     height: 100% !important;
     justify-content: space-between !important;
     gap: 28px !important;
     /* Distribución vertical uniforme de los 3 elementos */
     width: 100% !important;
     max-width: 320px;
     /* Ancho controlado para que la lectura sea fina */
     margin-left: auto;
 }

 .gt-quote-tag-v3 {
     color: #4a522d !important;
     font-size: 0.95rem !important;
     font-weight: 700 !important;
     letter-spacing: 0.5px;
     line-height: 1.4 !important;
     margin: 0 !important;
 }

 .gt-quote-main-title {
     color: #111111 !important;
     font-size: 1.45rem !important;
     font-weight: 600 !important;
     line-height: 1.5 !important;
     margin: 0 !important;
     text-align: left !important;
 }

 .gt-btn-quote-v3 {
     background-color: #5f632d !important;
     color: #ffffff !important;
     font-weight: 700 !important;
     font-size: 0.85rem !important;
     letter-spacing: 1px;
     height: 52px !important;
     border-radius: 30px !important;
     display: inline-flex !important;
     align-items: center !important;
     justify-content: center !important;
     width: 100% !important;
     max-width: 270px;
     border: 2px solid #5f632d !important;
     box-shadow: 0 4px 15px rgba(95, 99, 45, 0.2) !important;
     transition: all 0.3s ease !important;
     margin: 0 !important;
 }

 .gt-btn-quote-v3 i {
     margin-right: 10px;
     font-size: 1.1rem;
 }

 .gt-btn-quote-v3:hover {
     background-color: #ffffff !important;
     border-color: #ffffff !important;
     color: #5f632d !important;
     box-shadow: 0 6px 20px rgba(95, 99, 45, 0.15) !important;
     transform: translateY(-2px);
 }

 .gt-quote-image-block {
     flex: 0 0 70% !important;
     width: 70% !important;
     padding-right: 5% !important;
     /* Despega la imagen del borde derecho del navegador */
     box-sizing: border-box;
     display: flex !important;
     justify-content: flex-end !important;
 }

 .gt-quote-panoramic-wrapper {
     width: 100% !important;
     max-width: 936px !important;
     /* Respeta la resolución nativa de tu archivo */
     height: 360px !important;
     /* Altura estilizada de catálogo */
     overflow: hidden;
     border-radius: 16px !important;
     /* Esquinas curvas completas al estar flotando */
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04) !important;
     transition: transform 0.4s ease !important;
 }

 .gt-quote-panoramic-wrapper:hover {
     transform: translateY(-3px) !important;
     /* Efecto flotante elegante */
 }

 .gt-quote-wide-img {
     width: 100% !important;
     height: 100% !important;
     display: block !important;
     object-fit: cover !important;
     /* Evita pixelado o estiramiento tosco */
     object-position: center !important;
 }

 /* ==========================================================================
           CORRECCIÓN COMPLETA DE ANCHO Y APILADO PARA TABLETS Y DISPOSITIVOS MÓVILES
           ========================================================================== */
 @media (max-width: 1199px) {
     .gt-quote-main-title {
         font-size: 1.25rem !important;
     }
 }

 @media (max-width: 991px) {

     /* Pasa el layout horizontal a vertical (una sola columna limpia) */
     .gt-quote-flex-container {
         flex-direction: column !important;
         gap: 40px !important;
         /* Espacio de separación idóneo entre texto y foto */
     }

     /* El bloque de texto toma el 100% de la pantalla y se centra */
     .gt-quote-text-block {
         flex: 0 0 100% !important;
         width: 100% !important;
         padding-left: 20px !important;
         /* Limpieza del desfase de escritorio */
         padding-right: 20px !important;
         text-align: center !important;
         display: block !important;
     }

     .gt-quote-internal-wrapper {
         max-width: 100% !important;
         align-items: center !important;
         gap: 20px !important;
         margin-left: 0 !important;
     }

     .gt-quote-tag-v3,
     .gt-quote-main-title {
         text-align: center !important;
         width: 100% !important;
     }

     .gt-quote-main-title {
         font-size: 1.3rem !important;
     }

     .gt-btn-quote-v3 {
         max-width: 290px !important;
         width: 100% !important;
     }

     /* El bloque de la imagen toma el 100% de la pantalla y se centra */
     .gt-quote-image-block {
         flex: 0 0 100% !important;
         width: 100% !important;
         padding-left: 20px !important;
         padding-right: 20px !important;
         justify-content: center !important;
     }

     /* La imagen reduce su altura proporcionalmente en smartphones */
     .gt-quote-panoramic-wrapper {
         max-width: 100% !important;
         height: 240px !important;
         border-radius: 16px !important;
     }
 }


 /* ==========================================
   FIN SECCIÓN: COTIZACIÓN / CTA
   ========================================== */






 /* ==========================================
   INICIO SECCIÓN: MAPA / PRE-FOOTER
   ========================================== */
 .gt-location-section {
     padding-top: 80px;
     padding-bottom: 80px;
     background-color: #edefea !important;
 }

 .gt-form-main-title {
     font-size: 2.2rem !important;
     font-weight: 700 !important;
     line-height: 1.2 !important;
     margin-bottom: 15px !important;
     color: #111111;
 }

 .gt-map-wrapper {
     width: 100%;
     position: relative;
     overflow: hidden;
     line-height: 0;
     border-radius: 16px !important;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
     /* Sombra un pelo más profunda por el tamaño */
 }

 .gt-map-wrapper iframe {
     width: 100% !important;
     height: 550px;
     /* Altura ideal para pantallas grandes tipo Widescreen */
 }


 @media (max-width: 1366px) {
     .gt-form-main-title {
         font-size: 1.9rem !important;
     }

     .gt-map-wrapper iframe {
         height: 480px;
     }
 }

 @media (max-width: 576px) {
     .gt-location-section {
         padding-top: 50px;
         padding-bottom: 50px;
     }

     .gt-form-main-title {
         font-size: 1.6rem !important;
     }

     .gt-map-wrapper iframe {
         height: 380px;
         /* Cómodo para el touch scroll en celulares */
     }
 }

 /* ==========================================
   FIN SECCIÓN: MAPA / PRE-FOOTER
   ========================================== */


   /* Estilos corporativos para el Modal de Garden Towers */
#contactModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 50px rgba(31, 61, 59, 0.2);
    background-color: #faf9f6; /* Fondo arena */
}

#contactModal .modal-header {
    border-bottom: 1px solid #edebe6;
    padding: 20px 30px;
}

#contactModal .modal-title {
    color: #1F3D3B;
    font-weight: 700;
}

#contactModal .modal-body {
    padding: 30px;
}

#contactModal .close {
    font-size: 1.8rem;
    color: #1F3D3B;
    opacity: 0.7;
    transition: opacity 0.2s;
}

#contactModal .close:hover {
    opacity: 1;
}