/* css/proyecto-carolina.css */
:root {
    --color-dorado: #d29d01;
    --color-dorado-hover: #b67a2a;
    --color-negro: #000000;
    --color-blanco: #FFFFFF;
    --color-whatsapp-verde: #25D366;
    --color-whatsapp-resplandor: rgba(37, 211, 102, 0.7);
}

@font-face {
    font-family: 'gill';
    src: url('../fonts/gill-sans-mt-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'avenir';
    src: url('../fonts/avenir-roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.body-no-padding {
    padding-top: 70px;
}

.offcanvas-body i {
    color: var(--color-dorado) !important;
}

/* ==============================
   BOTON COTIZAR
============================== */
.btn-cotiza-fixed {
    position: fixed;
    right: 0;
    bottom: 100px;
    /* Ajusta según el botón de WhatsApp */
    background-color: var(--color-dorado);
    color: var(--color-negro);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none !important;
}

.btn-cotiza-fixed:hover {
    background-color: var(--color-dorado-hover);
    color: var(--color-negro);
    text-decoration: none;
}

/* Responsivo: Ajustes para móviles */
@media (max-width: 575.98px) {
    .btn-cotiza-fixed {
        bottom: 120px;
        /* más alto si el botón de WhatsApp está en 25px */
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 6px 0 0 6px;
    }
}

/*************************************************/
/* --- Reseteo Básico --- */
body,
h1,
h2,
p,
div,
figure,
ul,
li,
a,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

/* --- Contenedor Principal --- */
.wrap_base {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.hero-section {
    display: flex;
    width: 100%;
    background-color: #f8f9fa;
}

/* --- Columna Izquierda: Slider --- */
.hero-slider-column {
    width: 64%;
    height: 600px;
    position: relative;
}

.hero-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-slider-image.active {
    opacity: 1;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slider-control.prev {
    left: 1.5rem;
}

.slider-control.next {
    right: 1.5rem;
}

/* --- Columna Derecha: Información --- */
.hero-info-column {
    width: 36%;
    min-height: 600px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-status {
    color: #ca882f;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.project-title {
    font-family: 'gill', sans-serif;
    font-weight: 900;
    font-size: 2.8rem;
    color: #000;
    line-height: 1.1;
}

.project-subtitle {
    font-weight: 500;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/*.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.amenity-item img {
    height: 32px;
}

.amenity-item span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    color: #000;
}*/
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas por defecto */
    gap: 1.5rem; /* Espacio entre los íconos */
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Espacio entre el ícono y el texto */
}

.amenity-item img {
    height: 32px;
}

.amenity-item span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.6rem;
    color: #000;
    font-weight:600;
}

/* --- Media Queries para Responsividad --- */

/* Para Tablets (menos de 992px de ancho) */
@media (max-width: 991.98px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr); /* <<-- Cambia a 2 columnas */
    }
    .amenity-item span {
        font-size: 0.9rem!important;
    }

}

/* Para Móviles (menos de 575.98px de ancho) */
@media (max-width: 575.98px) {
    .amenities-grid {
        grid-template-columns: 1fr; /* <<-- Cambia a 1 sola columna */
        gap: 1.25rem;
    }
    .amenity-item span {
        font-size: 0.6rem!important;
    }
}

.sidebar-buttons {
    margin-top: 2.5rem;
    display: grid;
    gap: 0.5rem;
}


.buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.btn-sidebar {
    width: 100%;
    padding: 0.6rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-sidebar-outline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: bold;
    background: transparent;
    border: 2px solid #000;
    color: #333;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease-out;
}

.btn-sidebar-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: -1;
}

.btn-sidebar-outline:hover {
    color: white;
}

.btn-sidebar-outline:hover::before {
    transform: scaleX(1);
}

.btn-sidebar-solid {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #2296d6;
    color: white;
    border: 2px solid #2296d6;
    transition: background-color 0.3s ease-out;
    max-width: 50%;
    font-size: 0.7rem;
}

.btn-sidebar-solid:hover {
    background-color: #1c7bab;
}
@media (max-width: 767px) {
    .btn-sidebar-solid {
        max-width: 60%;
        font-size: 0.75rem;
    }
}
/* ==========================================================
   BARRA DE INFORMACIÓN INFERIOR
============================================================= */
.wrap_base {
    overflow-x: hidden;
}
/* Fuerza a la barra de información a ocupar el ancho completo de la pantalla */
/*.info-bar-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1950px;
    background-color: #cc0000;
   overflow: hidden;
}*/
.info-bar-section {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1920px;
}
/*.info-bar-section {
    display: flex;
    border-top: 1px solid #dee2e6;
}*/

.info-bar-col {
    display: flex;
    align-items: center!important;
    justify-content: center!important;
    padding: 1.25rem;
}

.info-bar-col.price-col {
    flex: 3;
    background-color: #E1E1E1;
    /* Color gris de la imagen */
    justify-content: center;
    /* Centra el bloque de texto */
}

.info-bar-item.price-item-content {
    flex-direction: column;
    /* Apila el texto verticalmente */
    align-items: flex-start;
    /* Alinea el texto a la izquierda */
    gap: 0.2rem;
    /* Reduce el espacio entre líneas */
}

.price-item-content .info-bar-label {
    color: #22231e;
    font-weight: 500;
    text-transform: capitalize;
}

.price-item-content .info-bar-value {
    color: #000;
    font-weight: 700;
    font-size: 1.8rem;
}

/* <<-- AQUÍ TERMINA LA MODIFICACIÓN -->> */

.info-bar-col.info-col {
    flex: 2;
}

.info-bar-col { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 1.25rem; 
    min-height: 100%;
}
@media (max-width: 1024px) {
    .info2 { 
    padding-top: 1.25rem!important;
    padding-bottom: 1.25rem!important;
    padding-left: 0!important;
    /*background-color: #25D366;*/
    float: left!important;
    }
    .info-bar-col { 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        padding: 1.25rem 0!important; 
        min-height: 100%;
    }
}


.info-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-bar-icon {
    font-size: 1.75rem;
    color: #6c757d;
}

.info-bar-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    line-height: 1.2;
}
.info-bar-text {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: #212529;
    text-align: left;
}
@media (max-width: 1024px) {
    .info-bar-label {
        font-size: 1.25rem;
        color: #000;
        text-align: left!important;
    }
    .info-bar-text {
        font-size: 1.25rem;
        color: 000;
        text-align: left!important;
    }
}

@media (max-width: 767px) {
    .info-bar-label {
        font-size: 0.75rem;
        color: #000;
    }
    .info-bar-text {
        font-size: 0.7rem;
        color: #000;
        text-align: left!important;
    }
}

.btn-brochure {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center!important;
    justify-content: center!important; /* Esta es la propiedad que centra todo */
    border-radius: 0;
    border: none;
    background-color: #212529;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    gap: 0.75rem;
    transition: background-color 0.3s ease;
}

.btn-brochure:hover {
    background-color: #212529; /* Un gris un poco más claro para el hover */
    color: #fff;
}

@media (max-width: 1024px) {
    .btn-brochure {
        font-size: 1rem;
    } 
    .btn-brochure i {
        text-align: center!important;
    }
}

@media (max-width: 767px) {
    .btn-brochure {
        font-size: 0.85rem;
    }
    .info-bar-col.button-col .btn-brochure {
        justify-content: center!important; 
    }
}
/* --- Media Queries para Responsividad --- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-slider-column,
    .hero-info-column {
        width: 100%;
        min-height: 0;
    }

    .hero-slider-column {
        height: 450px;
    }

    .info-bar-section {
        flex-wrap: wrap;
    }

    .info-bar-col {
        flex-basis: 90% !important;
        border-bottom: 1px solid #fff;
    }

    .info-bar-col.button-col {
        flex-basis: 100% !important;
    }
    .info-bar-section {
        width: 100%;
        position: static;
        left: auto;
        transform: none;
    }
}

@media (max-width: 767px) {
    .hero-slider-column {
        height: 290px;
    }

    .project-title {
        font-size: 2.2rem;
    }

    .hero-info-column,
    .info-bar-col {
        padding: 1.5rem;
    }

    .info-bar-col {
        flex-basis: 100% !important;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .info-bar-section {
        width: 100%;
        position: static;
        left: auto;
        transform: none;
    }
}

/********************************************************************/
/* Navbar Styling */
.navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.hamburger-button {
    color: #333;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
}

.hamburger-button:hover,
.hamburger-button:focus {
    color: var(--color-negro);
}

.navbar-v-divider {
    border-left: 3px solid var(--color-dorado);
    ;
    height: 30px;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    font-weight: bold;
}

.navbar .proyectos-link {
    color: var(--color-dorado) !important;
    font-weight: 400;
}

.navbar .proyectos-link:hover {
    filter: brightness(0.9);
    color: var(--color-dorado) !important;
}

.navbar .contactanos-link {
    color: #555 !important;
    font-weight: 400;
}

.navbar .contactanos-link:hover {
    color: #333 !important;
}

.whatsapp-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--color-whatsapp-verde);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 0 0px 0px var(--color-whatsapp-resplandor);
}

.whatsapp-icon-wrapper:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 0 15px 5px var(--color-whatsapp-resplandor);
}

/* Off-canvas Styling */
.offcanvas {
    background-color: var(--color-negro);
    color: #ffffff;
    width: 320px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #444;
    padding: 1rem 1.5rem;
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 1.2rem;
    padding: 0.5rem;
    line-height: 1;
    opacity: 1;
}

.btn-close-custom i {
    color: var(--color-dorado);
}

.btn-close-custom:hover i {
    color: #fff;
}

.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
}

.navbar-nav .nav-link.active-link,
.navbar-nav .nav-link:hover {
    color: var(--color-dorado) !important;
}

.offcanvas-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 69px);
}

.offcanvas-body .navbar-nav .nav-link {
    color: #ffffff;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.offcanvas-body .navbar-nav .nav-link.active-link,
.offcanvas-body .navbar-nav .nav-link:hover {
    color: var(--color-dorado) !important;
}

.offcanvas-body .navbar-nav .nav-link i {
    color: #adb5bd;
}

.offcanvas-body .navbar-nav .nav-link.active-link i,
.offcanvas-body .navbar-nav .nav-link:hover i {
    color: var(--color-dorado) !important;
}

.text-dorado,
.actual {
    color: var(--color-dorado) !important;
}

.contact-info-offcanvas h5 {
    color: #ffffff;
    border-bottom: 1px solid var(--color-dorado);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem !important;
    font-weight: normal;
}

.contact-info-offcanvas p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.contact-info-offcanvas p i {
    color: var(--color-dorado);
    width: 20px;
}

.offcanvas-social-icons {
    margin-top: auto !important;
    padding-top: 1rem;
    border-top: 1px solid #444;
    text-align: left;
}

.offcanvas-social-icons a i {
    color: #ffffff;
    transition: color 0.2s;
}

.offcanvas-social-icons a:hover i {
    color: var(--color-dorado);
}

.scroll-to-top-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    background-color: var(--color-dorado);
    color: var(--color-negro);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s, transform 0.4s ease-in-out;
}

.scroll-to-top-button.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

.scroll-to-top-button:hover {
    filter: brightness(0.9);
}
/* ==============================
   FOOTER
============================== */
.footer-section {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-negro);
    margin-top: auto; 
}
.footer-column-content {
    text-align: left;
}
.footer-logo {
    max-height: 45px; 
    display: block;
    margin-bottom: 0.5rem;
}
.footer-address-line {
    font-size: 0.9rem;
    color: #ccc; 
    margin-bottom: 0.3rem;
    line-height: 1.4; 
}
.footer-heading-column {  
    color: #e0e0e0;
    font-size: 0.9rem; 
    font-weight: normal!important;
    /*text-transform: uppercase;*/
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem !important; 
}
.footer-contact-info p,
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-contact-info p a,
.footer-links li a {
    color: #f0f0f0; 
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}
.footer-contact-info p a:hover,
.footer-links li a:hover {
    color: var(--color-dorado);
    text-decoration: none;
}
.footer-contact-info .whatsapp-footer a {
    color: var(--color-dorado); 
    font-weight: 500;
}
.footer-contact-info .whatsapp-footer a i {
    margin-right: 0.3rem;
    font-size: 1.1rem; 
}
.footer-links ul,
.footer-links {
    padding-left: 0;
    list-style: none;
    /*font-weight: bold;
    text-transform: uppercase;*/
}
.footer-social .social-icon {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-dorado);
    color: var(--color-negro); 
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-social .social-icon:hover {
    background-color: var(--color-dorado-hover)!important;
    color: var(--color-negro);
}
.footer-copyright {
    font-size: 0.85rem;
    color: #999; 
}
/*
.footer-section {
    background-color: var(--color-negro);
    margin-top: auto;
}

.footer-column-content {
    text-align: left;
}

.footer-logo {
    max-height: 45px;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-address-line {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.footer-heading-column {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem !important;
}

.footer-contact-info p,
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-contact-info p a,
.footer-links li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease-in-out;
}

.footer-contact-info p a:hover,
.footer-links li a:hover {
    color: var(--color-dorado);
    text-decoration: none;
}

.footer-contact-info .whatsapp-footer a {
    color: var(--color-dorado);
    font-weight: 500;
}

.footer-contact-info .whatsapp-footer a i {
    margin-right: 0.3rem;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-links {
    padding-left: 0;
    list-style: none;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-dorado);
    color: var(--color-negro);
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: var(--color-dorado-hover) !important;
    color: var(--color-negro);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #999;
}*/

@media (max-width: 991.98px) {
    .navbar-v-divider {
        display: none !important;
    }

    .navbar .d-none.d-lg-flex {
        display: none !important;
    }

    body {
        padding-top: 60px;
    }

    .navbar-brand {
        margin-left: 0.5rem !important;
    }

    .scroll-to-top-button {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-column:last-of-type {
        margin-bottom: 0;
    }

    .footer-column.mt-lg-5 {
        margin-top: 0 !important;
    }

    .footer-column-content {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.texto-justificado {
    text-align: justify !important;
}

/** mapa **/
.location-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.location-controls {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.location-address h3 {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 1.2rem;
    color: var(--color-negro);
    margin-top: 4.5rem;    
    line-height: 0.5;
}
@media (max-width: 1200px) {
    .location-address h3 {
        font-size: 1.0rem!important;
    }
}
@media (max-width: 1024px) {
    .location-address h3 {
        font-size: 0.8rem!important;
    }
}
@media (max-width: 767px) {
    .location-address h3 {
        font-size: 0.8rem!important;;
    }
}

.location-address p {
    font-family: Arial, Helvetica, sans-serif;
    color: #6d7073;
    font-size: 0.8rem;
    margin-bottom: 0.9rem;
}

.category-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-category {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-weight: 600;
    color: #000;
    transition: all 0.2s ease-in-out;
    font-size: 0.7rem;
}

.btn-category:hover {
    background-color: #e9ecef;
    border-color: #ccc;
}

.btn-category.active {
    border-color: var(--color-dorado);
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: var(--color-dorado);
}

.btn-category img {
    height: 24px;
    margin-right: 0.75rem;
}

.app-links {
    margin-top: 1.0rem;
    padding-top: 0.2rem;
    border-top: 1px solid #e9ecef;
    text-align: end;
}

.app-links a img {
    height: 48px;
    margin-top: 1rem;
    margin-left: 1.5rem;
    transition: transform 0.2s ease;
}

.app-links a:hover img {
    transform: scale(1.1);
}
@media (max-width: 1200px) {
    .app-links {
        
    margin-top: 0.1rem;
        text-align: right;
        margin-bottom: 2rem;
    }
    .app-links a img {
        height: 32px;
    }
}
@media (max-width: 1024px) {
    .app-links {
        text-align: center;
        margin-bottom: 2rem;
    }
}
@media (max-width: 767px) {
    .app-links {
        text-align: center;
        margin-bottom: 2rem;
    }
}

.map-wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image-base {
    width: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.map-overlay.active {
    opacity: 1;
}

/*******/
.summary-section {
    padding: 0.1rem 0;
    background-color: #ffffff;
}


.summary-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.summary-text {
    padding-left: 2rem;
}

/* Contenedor del título y la dirección */
.summary-header {
    display: inline-flex;
    /* 1. Hace que el contenedor se ajuste al ancho del título */
    flex-direction: column;
    /* 2. Apila el título y la dirección verticalmente */
    margin-bottom: 2rem;
    /* 3. Mantiene el espacio inferior */
}

.summary-title {
    font-family: 'gill', sans-serif;
    font-size: 3.0rem;
    font-weight: 700;
    color: var(--color-negro);
    line-height: 1.1;
    text-align: left;
    margin-bottom: 0rem;
}

@media (max-width: 1024px) {
    .summary-title {
        font-size: 3.0rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .summary-title {
        font-size: 1.8rem;
        text-align: center;
    }
}

/* Wrapper para la dirección, que permite el centrado */
.summary-address-wrapper {
    display: flex;
    justify-content: center;
    /* 4. CENTRA el contenido (el <p>) horizontalmente */
}

/* Estilo de la dirección */
.summary-address {
    font-family: Tahoma, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    /* 5. El texto dentro del <p> también se centra */
    margin-bottom: 0;
    line-height: 1.4;
}
.summary-address span {
    font-size: 0.7rem;
    font-weight: 400;
}

.summary-description {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #000;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: justify;
    font-weight: 400;
    /*padding-right: 9rem;*/
    width: 70%;
}
@media (max-width: 1200px) {
    .summary-description {
        width: 90%;
        
    /*font-size: 1.5rem;*/
    }  
    .summary-email {
        font-size: 0.8rem!important;
        color: #000!important;
        font-weight: 600!important;
    }
}

@media (max-width: 1024px) {
    .summary-description {
        width: 80%;
        margin: auto;
        font-size: 1.5rem;
        margin-top: 2rem;
    }  
    .summary-email {
        font-size: 1.5rem!important;
        color: #000!important;
        font-weight: 400!important;
    }
}

@media (max-width: 767px) {
    .summary-description {
        width: 80%;
        margin: auto;
        font-size: 0.8rem;
    }
    .summary-email {
        font-size: 0.8rem!important;
        color: #000!important;
        font-weight: 400!important;
    }
}

.summary-email {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    color: var(--color-negro);
    text-decoration: none;
    font-weight: 700;
}

.summary-email i {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: var(--color-dorado);
}
.summary-email:hover i {
    text-decoration: none;
}

.summary-email:hover {
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .image-composition {
        margin-bottom: 4rem;
        min-height: 350px;
    }

    .summary-text {
        padding-left: 0;
        text-align: center;
    }

    .summary-email {
        justify-content: center;
    }
}

/** **/
/* ==========================================================
   NUEVO: ESTILOS PARA LA SECCIÓN DE GALERÍA SLICK
============================================================= */
.gallery-section {
    width: 100%;
    max-width: 1200px;
    margin: 0.1rem auto 1rem;
    padding: 0.1rem;
    box-sizing: border-box;
}

.gallery-title {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-title h2 {
    font-size: 1rem;
    font-weight: 500;
    color: #E58A00;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.gallery-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background-color: #E58A00;
}

.slider-main {
    margin-bottom: 1rem;
}

.slider-main .slide-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.slider-main .slick-arrow {
    width: 50px;
    height: 50px;
    z-index: 10;
}

.slider-main .slick-arrow::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: color 0.3s;
}

.slider-main .slick-arrow:hover::before {
    color: white;
}

.slider-main .slick-prev::before {
    content: '\f053';
}

.slider-main .slick-next::before {
    content: '\f054';
}

.slider-main .slick-prev {
    left: 25px;
}

.slider-main .slick-next {
    right: 25px;
}

.slider-nav {
    max-width: 600px;
    margin: 0 auto;
}

.slider-nav .thumb-item {
    cursor: pointer;
    padding: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s ease-in-out;
}

.slider-nav .thumb-item img {
    width: 100%;
    height: auto;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.slider-nav .slick-current .thumb-item {
    opacity: 1;
}

.slider-nav .slick-current .thumb-item img {
    border-color: #E58A00;
}

/****************************************************/
.surroundings-section {
    padding: 1rem 0;
    background-color: #FFF;
    overflow: hidden;
    /* Evita scroll horizontal por el carrusel */
}

.section-heading-container {
    margin-top: 5rem !important;
    /*margin-bottom: 1rem !important;*/
    margin-bottom: 0!important;
}
@media (max-width: 1024px) {
    .section-heading-container {
        margin-top: 2rem !important;
    }
}

@media (max-width: 767px) {
    .section-heading-container {
        margin-top: 2rem !important;
    } 
}

.section-title-main {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .section-title-main {
        margin-top: 3rem;
        font-size: 2.5rem;
        font-weight: 700;
        text-transform: uppercase;
    }
}

@media (max-width: 767px) {
    .section-title-main {
        margin-top: 3rem;
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: uppercase;
    }
}

.decorative-line-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
}

.decorative-line {
    width: 70px;
    height: 4px;
    background-color: #ca882f;
}

.surroundings-container {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 1024px) {
    .surroundings-container {
        max-width: 90%;
    }  
}

@media (max-width: 767px) {
    .surroundings-container {
        max-width: 90%;
    }  
}
.surroundings-swiper {
    width: 80%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.surroundings-swiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 60%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0.6;
    transition: transform 0.4s ease, opacity 0.4s ease;

    /* ===================================================================== */
    /* MODIFICACIÓN ÚNICA: Aumenta la escala para que las imágenes laterales */
    /* sean más altas y ocupen casi todo el espacio de la imagen central.   */
    /* ===================================================================== */
    transform: scale(0.95);
}

.surroundings-swiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.surroundings-swiper .swiper-slide img {
    display: block;
    width: 100%;
}

.surroundings-swiper .swiper-button-prev,
.surroundings-swiper .swiper-button-next {
    color: #333;
    transform: scale(0.8);
    font-weight: bold;
}

@media (max-width: 767px) {
    .surroundings-container {
        max-width: 100%;
    }

    .surroundings-swiper .swiper-button-prev,
    .surroundings-swiper .swiper-button-next {
        display: none;
    }

    .surroundings-swiper .swiper-slide {
        width: 100%;
    }
}

.surroundings-text {
    font-family: Arial, Helvetica, sans-serif;
    max-width: 500px;
    /*margin: 2rem auto 5rem auto;*/
    margin: auto!important;
    text-align: justify;
    color: #000;
    line-height: 1.5;
    font-size: 0.8rem;
}
@media (max-width: 1024px) {
    .surroundings-text {
        max-width: 100%!important;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .surroundings-text {
        max-width: 90%!important;
        font-size: 0.8rem;
        margin-bottom: 1rem;
        margin: auto;
    }   
}
/****************************************************/
/** INICIO FORMULARIO **/
/* --- ESTILOS PARA LA SECCIÓN DE PLANOS Y FORMULARIO --- */
.planos-formulario-section {
    background-color: #f8f9fa;
}

.planos-carousel-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tipo-plano-titulo {
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
}

@media (max-width: 767px) {
    .tipo-plano-titulo {
        font-size: 0.8rem;
        color: #000;
    }
}

#carouselPlanos .carousel-control-prev-icon,
#carouselPlanos .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 15px;
    width: 20px;
    height: 20px;
    background-size: 60% 60%;
}

.plano-detalles-barra {
    background-color: #343a40;
    color: #fff;
    padding: 1rem 0;
    border-radius: 0 0 6px 6px;
}
.plano-detalles-barra small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 0.25rem;
}

.formulario-container h4 { font-weight: 600; color: #333; }
.formulario-container .subtitle-form { font-size: 0.95rem; color: #555; }
.btn-enviar-proyecto {
    background-color: var(--color-dorado);
    color: var(--color-negro);
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-enviar-proyecto:hover { 
    filter: brightness(0.9); 
    color: var(--color-blanco)!important;
    background-color: var(--color-negro)!important;
}

/* Estilos para la lupa y el zoom */
.plano-image-wrapper { position: relative; cursor: pointer; display: inline-block; }
.plano-image-wrapper .lupa-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); color: white; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; opacity: 0; transition: opacity 0.3s ease-in-out; border-radius: 6px; }
.plano-image-wrapper:hover .lupa-overlay { opacity: 1; }
.image-zoom-modal { display: none; position: fixed; z-index: 1055; padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); }
.image-zoom-modal-content { margin: auto; display: block; max-width: 90%; max-height: 85vh; }
.close-zoom-modal { position: absolute; top: 20px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
/** FIN FORMULARIO **/
/* ==============================
   BOTON COTIZAR
============================== */
.btn-cotiza-fixed {
    position: fixed;
    right: 0;
    bottom: 100px; /* Ajusta según el botón de WhatsApp */
    background-color: var(--color-dorado);
    color: var(--color-negro);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none!important;
}

.btn-cotiza-fixed:hover {
    background-color: var(--color-dorado-hover);
    color: var(--color-negro);
    text-decoration: none;
}

/* Responsivo: Ajustes para móviles */
@media (max-width: 575.98px) {
    .btn-cotiza-fixed {
        bottom: 120px; /* más alto si el botón de WhatsApp está en 25px */
        font-size: 0.85rem;
        padding: 8px 16px;
        border-radius: 6px 0 0 6px;
    }
}
/****************************************************/
 /* Contenedor principal del slider */
 .hero-slider-container-new {
    position: relative;
    width: 100%;
    height: 100%; /* Asegura que el contenedor tenga altura */
    overflow: hidden; /* Oculta cualquier desbordamiento */

}

/* Cada slide individual (imagen + texto) */
.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Oculto por defecto */
    transition: opacity 0.8s ease-in-out; /* Animación de desvanecimiento */
}

/* Slide que está visible */
.hero-slide-item.active {
    opacity: 1; /* Se hace visible */
}

/* Estilo de la imagen dentro del slide */
.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La imagen cubre todo el espacio sin deformarse */
}

/* Contenedor del texto (caption) */
.hero-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 2rem 2rem; /* Espaciado interno */
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%); /* Degradado para legibilidad */
}

/* Estilo del texto H5 */
.hero-slide-title {
    color: white;
    font-size: 2rem; /* Tamaño del texto */
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Sombra para resaltar */
}
/****************************************************/
/* Estilo para el enlace que envuelve toda la columna */
.brochure-link-wrapper {
    display: flex; /* Permite usar flexbox para centrar */
    flex-direction: column; /* Apila el contenido verticalmente */
    align-items: center; /* Centra horizontalmente */
    justify-content: center; /* Centra verticalmente */
    width: 100%;
    height: 100%;
    min-height: 100px; /* Asegura una altura mínima consistente */
    padding: 1rem; /* Un poco de espacio interno */
    text-decoration: none; /* Quita el subrayado del enlace */
    color: #fff; /* Color del texto y del ícono */
    background-color: #212529; /* Fondo oscuro base */
    transition: background-color 0.3s ease; /* Transición suave para el hover */
}

/* Efecto al pasar el mouse por encima */
.brochure-link-wrapper:hover {
    background-color: #495057; /* Un gris un poco más claro */
    color: #fff; /* Mantiene el color del texto */
}

/* Contenido interno (para agrupar ícono y texto) */
.brochure-link-content {
    text-align: center;
}

/* Estilo para el ícono de descarga */
.brochure-link-icon {
    font-size: 1.0rem; /* Tamaño del ícono */
    margin-bottom: 0.5rem; /* Espacio entre el ícono y el texto */
}

/* Estilo para el texto */
.brochure-link-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/*****************************************************/


/**************************************************/

/*************************************************/