/* ==========================================================
   bonifacio.css — Estilos específicos para HOST Bonifacio
   Mantener custom.css intacto, este archivo amplía sus estilos
   ========================================================== */

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================
   0. Page Header — Bonifacio
======================== */
.bf-page-header {
    display: flex;
    align-items: flex-end;
    padding: 0 !important;
    min-height: 520px;
}
.bf-page-header:before {
    opacity: 15%;
}
.bf-page-header .container {
    padding-bottom: 50px;
}
.bf-header-bottom {
    text-align: center;
}
.bf-header-bottom h1 {
    font-size: 42px;
    margin-bottom: 0;
}
.bf-header-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

/* ========================
   1. Responsive (mobile)
======================== */
@media (max-width: 767px) {
    /* Padding del container en mobile para evitar texto pegado al borde */
    .bf-slider-section .container,
    .host-tabs-section .container,
    .plantas-section .container,
    .bf-form-section .container,
    .bf-otros-section .container,
    .bf-biofilia-section .container,
    .page-project-single .container {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    /* Page Header Bonifacio */
    .bf-page-header { min-height: 380px; }
    .bf-page-header .container { padding-bottom: 30px; }
    .bf-header-bottom h1 { font-size: 26px; }
    .bf-header-subtitle { font-size: 12px; letter-spacing: 2px; }

    /* Hero Emocional */
    .hero-emo-section { padding: 50px 0 !important; }
    .hero-emo-section h2 { font-size: 1.6rem !important; }

    /* Ocultar grilla desktop, mostrar slider mobile */
    .hero-emo-grid { display: none !important; }
    .hero-emo-slider { display: block !important; }
    .hero-emo-slider .swiper-slide img { width: 100%; height: 260px; object-fit: cover; }
    .hero-emo-slider .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
    .hero-emo-slider .swiper-pagination-bullet-active { opacity: 1; }

    /* Tabs Section */
    .host-tabs-section { padding: 50px 0 !important; }
    .host-tabs { flex-wrap: wrap !important; border-radius: 15px !important; justify-content: center; }
    .host-tab-btn { padding: 10px 18px !important; font-size: 0.78rem !important; }

    /* Amenities Icons */
    .amenities-icons-grid .col-4 { margin-bottom: 10px; }
    .bf-amenity-label { font-size: 0.68rem !important; }
    .bf-amenity-icon { font-size: 1.4rem !important; }

    /* Map iframe */
    .page-single-image iframe { height: 280px !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hero-emo-section .bf-fig-tall,
    .hero-emo-section .bf-fig-medium { height: 280px !important; }

    /* Padding tablet para evitar texto pegado al borde */
    .bf-slider-section .container,
    .host-tabs-section .container,
    .plantas-section .container,
    .bf-form-section .container,
    .bf-otros-section .container,
    .bf-biofilia-section .container,
    .page-project-single .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/* ========================
   2. Terminaciones
======================== */
.terminaciones-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.terminacion-card {
    background: #f8f9f8;
    border: 1px solid #6c7b74;
    border-radius: 12px;
    padding: 18px 20px;
}
.terminacion-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #6c7b74;
    border-bottom: 1px solid rgba(108,123,116,0.3);
    padding-bottom: 8px;
}
.terminacion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.terminacion-card ul li {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #585960;
}
.terminacion-card ul li strong {
    color: #6c7b74;
}
/* Terminaciones en tabs de ambientes (fondo claro) */
#tab-ambientes3 .terminacion-card,
#tab-ambientes4 .terminacion-card,
#tab-terraza .terminacion-card {
    background: #f8f9f8;
    border: 1px solid #6c7b74;
}
#tab-ambientes3 .terminacion-card h4,
#tab-ambientes4 .terminacion-card h4,
#tab-terraza .terminacion-card h4 {
    color: #6c7b74;
    border-bottom: 1px solid rgba(108,123,116,0.3);
}
#tab-ambientes3 .terminacion-card ul li,
#tab-ambientes4 .terminacion-card ul li {
    color: #585960;
}
#tab-ambientes3 .terminacion-card ul li strong,
#tab-ambientes4 .terminacion-card ul li strong {
    color: #6c7b74;
}
#tab-terraza .terminacion-card p {
    color: #585960;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
#tab-terraza .terminacion-card p:last-child {
    margin-bottom: 0;
}
#tab-terraza .terminaciones-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
}
.img-label {
    white-space: nowrap;
    pointer-events: none;
    z-index: 3;
}
@media (max-width: 991px) {
    .terminaciones-grid { 
        grid-template-columns: 1fr; 
    }
    #tab-ambientes3 .terminaciones-grid,
    #tab-ambientes4 .terminaciones-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767px) {
    .terminacion-card { padding: 14px 16px; }
    .terminacion-card h4 { font-size: 0.8rem; }
    .terminacion-card ul li { font-size: 0.74rem; }
    .img-label { font-size: 0.65rem !important; padding: 4px 10px !important; }
    .terminaciones-grid { 
        grid-template-columns: 1fr; 
    }
    #tab-ambientes3 .terminaciones-grid,
    #tab-ambientes4 .terminaciones-grid {
        grid-template-columns: 1fr;
    }
}


/* ========================
   3. Plantas por Nivel
======================== */
.nivel-selector {
    display: inline-flex;
    gap: 8px;
    background: #fff;
    border-radius: 50px;
    padding: 6px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    justify-content: center;
}
.nivel-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    color: #888;
}
.nivel-btn.active {
    background: #6c7b74;
    color: #fff;
}
.nivel-btn:hover:not(.active) {
    color: #6c7b74;
    background: #eef1ef;
}
.nivel-content {
    margin-top: 40px;
    display: none;
}
.nivel-content.active {
    display: block;
}
.nivel-plano-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}
a.plano-zoom {
    display: block;
    cursor: zoom-in;
    position: relative;
}
a.plano-zoom::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: #555;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
a.plano-zoom:hover::after {
    opacity: 1;
}
.image-anime:after {
    pointer-events: none;
}
@media (max-width: 767px) {
    .nivel-btn { padding: 8px 16px; font-size: 0.72rem; }
    .nivel-selector { gap: 5px; padding: 5px; }
}

/* Slider plantas */
.nivel-planta-slider .swiper-button-prev,
.nivel-planta-slider .swiper-button-next {
    color: var(--primary-color, #1a1a1a);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.nivel-planta-slider .swiper-button-prev::after,
.nivel-planta-slider .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.nivel-planta-slider .swiper-pagination-bullet-active {
    background: var(--primary-color, #1a1a1a);
}
.bf-nivel-slider-wrap,
.nivel-planta-slider {
    border-radius: 12px;
    overflow: hidden;
}


/* ========================
   4. CTA Brochure Descarga
======================== */
.cta-brochure {
    text-align: center;
    padding: 50px 20px;
}
.cta-brochure p {
    font-size: 1rem;
    margin-bottom: 18px;
    opacity: 0.75;
}
.cta-brochure.bf-cta-white {
    background: #fff;
}
.cta-brochure.bf-cta-white p {
    color: #555;
    opacity: 1;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #6c7b74;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108,123,116,0.3);
}
.btn-download:hover {
    background: #5a685f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(108,123,116,0.4);
}
.btn-download i {
    font-size: 1.1rem;
}
@media (max-width: 767px) {
    .btn-download { padding: 12px 28px; font-size: 0.82rem; }
}


/* ========================
   5. Floating Download Button
======================== */
.floating-download {
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 999;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #6c7b74;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 18px rgba(108,123,116,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.7);
}
.floating-download.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.floating-download:hover {
    background: #5a685f;
    color: #fff;
    transform: scale(1.08);
}
.floating-download .tooltip-text {
    position: absolute;
    right: 62px;
    background: #333;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.72rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    letter-spacing: 0.5px;
}
.floating-download:hover .tooltip-text {
    opacity: 1;
}
@media (max-width: 767px) {
    .floating-download { bottom: 80px; right: 15px; width: 46px; height: 46px; font-size: 1rem; }
}


/* ========================
   6. Brochure Popup
======================== */
.brochure-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.brochure-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}
.brochure-popup {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.brochure-popup-overlay.show .brochure-popup {
    transform: translateY(0) scale(1);
}
.brochure-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.brochure-popup-close:hover { color: #333; }
.brochure-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(4,6,24,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.brochure-popup-icon i {
    font-size: 1.6rem;
    color: var(--primary-color, #1a1a1a);
}
.brochure-popup h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #222;
}
.brochure-popup p {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .brochure-popup { padding: 35px 25px; }
}

/* ========================
   6b. Lead Capture Modal
======================== */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.lead-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}
.lead-modal {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.lead-modal-overlay.show .lead-modal {
    transform: translateY(0) scale(1);
}
.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}
.lead-modal-close:hover { color: #333; }
.lead-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(4,6,24,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.lead-modal-icon--ok { background: rgba(34,197,94,0.12); }
.lead-modal-icon i { font-size: 1.6rem; color: var(--primary-color, #1a1a1a); }
.lead-modal-icon--ok i { color: #16a34a; }
.lead-modal h3 { font-size: 1.4rem; margin-bottom: 10px; color: #222; }
.lead-modal p { font-size: 0.92rem; color: #666; margin-bottom: 22px; line-height: 1.5; }
#leadForm input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 12px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
#leadForm input:focus { border-color: var(--primary-color, #222); }
.btn-lead-submit { display: block; width: 100%; margin-top: 6px; }
.btn-lead-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.2s, transform 0.2s;
}
.btn-lead-whatsapp:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); }
.btn-lead-whatsapp i { font-size: 1.1rem; }
@media (max-width: 767px) {
    .lead-modal { padding: 35px 25px; }
}


/* ========================
   7. Hero Emocional
======================== */
.hero-emo-section {
    padding: 80px 0;
}
.bf-hero-address {
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.8;
}
.hero-emo-grid {
    margin-top: 40px;
    row-gap: 20px;
}
.hero-emo-slider {
    display: none;
    margin-top: 30px;
}
.bf-fig-tall {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}
.bf-fig-medium {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}
.bf-fig-tall img,
.bf-fig-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================
   8. Unidades / Host Tabs
======================== */
.host-tabs-section {
    padding: 80px 0;
    background: #fff !important;
    overflow-x: hidden;
}
.bf-unidades-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.bf-unidades-subtitle {
    font-size: 1.1rem;
    color: #6c7b74;
    margin-bottom: 40px;
}

/* Destacados previos */
.bf-destacados-row {
    margin-bottom: 50px;
}
.bf-destacados-left {
    padding: 30px 50px 30px 30px;
    border-right: 1px solid rgba(108,123,116,0.2);
}
.bf-destacados-right {
    padding: 30px 30px 30px 50px;
}
.bf-dest-icon-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}
.bf-dest-icon {
    font-size: 2.2rem;
    color: #6c7b74;
}
.bf-dest-h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #6c7b74;
    line-height: 1.2;
}
.bf-dest-hr {
    height: 1px;
    background: rgba(108,123,116,0.2);
    margin-bottom: 16px;
}
.bf-dest-text {
    font-size: 0.92rem;
    color: #585960;
    line-height: 1.85;
    margin: 0;
}
@media (max-width: 991px) {
    .bf-destacados-left {
        border-right: none;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(108,123,116,0.2);
        margin-bottom: 20px;
    }
    .bf-destacados-right {
        padding-left: 0;
    }
}

/* Host Tabs */
.host-tabs {
    display: inline-flex;
    gap: 10px;
    background: rgba(108,123,116,0.1);
    border-radius: 50px;
    padding: 6px;
    margin: 0 auto;
}
.host-tabs-section .col-lg-12 {
    text-align: center;
}
.host-tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(108,123,116,0.7);
}
.host-tab-btn.active {
    background: #6c7b74;
    color: #fff;
}
.host-tab-content {
    margin-top: 40px;
    display: none;
}
.host-tab-content.active {
    display: block;
}

/* Tab Terminaciones — figura principal */
.bf-unidad-fig {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    position: relative;
}
.bf-unidad-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Tab 3 Ambientes */
.bf-ambientes-badge-wrap {
    display: inline-block;
    border: 1px solid #6c7b74;
    border-radius: 8px;
    padding: 10px 30px;
    background: rgba(108,123,116,0.05);
}
.bf-ambientes-badge-wrap span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6c7b74;
}
/* Espaciado entre badges e imágenes */
.host-tab-content > .row:first-child {
    margin-bottom: 40px;
}
.host-tab-content > .row:nth-child(2) {
    margin-bottom: 30px;
}
.host-tab-content > .row:nth-child(2) .col-lg-6 {
    margin-bottom: 20px;
}
.host-tab-content > .row:nth-child(3) {
    margin-top: 40px;
}
.bf-ambientes-fig {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    position: relative;
}
.bf-ambientes-fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 767px) {
    .bf-unidad-fig { min-height: 300px; }
    .bf-ambientes-fig { height: 280px; }
    .host-tab-content > .row:first-child {
        margin-bottom: 30px;
    }
    .host-tab-content > .row:nth-child(2) .col-lg-6 {
        margin-bottom: 15px;
    }
    .host-tab-content > .row:nth-child(3) {
        margin-top: 30px;
    }
}


/* ========================
   9. Project Single
======================== */
.bf-map-iframe {
    border: 0;
    border-radius: 15px;
    width: 100%;
    height: 450px;
}
.bf-edificio-fig {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
}
.bf-edificio-fig img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    background: #fff;
    border-radius: 12px;
}

/* Flecha indicadora */
.bf-arrow-indicator {
    text-align: center;
    margin: 20px 0;
    animation: bounce 2s infinite;
}
.bf-arrow-indicator i {
    font-size: 2rem;
    color: #1a1a1a;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Lista de características debajo de la imagen */
.bf-caracteristicas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(4, 6, 24, 0.1);
    min-height: 150px;
}

.bf-caracteristicas-dark {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(4, 6, 24, 0.1);
}

.bf-caract-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bf-caracteristicas-dark .bf-caract-item {
    color: #1a1a1a;
}

.bf-caract-item i {
    color: #1a1a1a;
    font-size: 0.5rem;
    flex-shrink: 0;
}

.bf-edificio3-fig {
    border-radius: 15px;
    overflow: visible;
}
.bf-edificio3-fig img {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    background: #fff;
    border-radius: 12px;
}

@media (max-width: 767px) {
    .bf-map-iframe { height: 280px !important; }
    .bf-caracteristicas-list {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
    }
    .bf-caract-item {
        font-size: 0.85rem;
    }
    .bf-arrow-indicator i {
        font-size: 1.5rem;
    }
}



/* ========================
   9.5. Amenities Hero Section
======================== */
/* ========================
   10. Amenities Hero Section
======================== */
.bf-amenities-hero-wrapper {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 0;
}
.bf-amenities-hero-wrapper .row {
    margin: 0;
}
.bf-amenities-hero-wrapper [class*="col-"] {
    padding: 0;
}
.bf-amenities-hero-section {
    background: #f8f9f8;
    padding: 0;
    overflow: hidden;
}
.bf-amenities-hero-section .row {
    margin: 0;
}
.bf-amenities-hero-section [class*="col-"] {
    padding: 0;
}

/* CTA Card con Imagen */
.bf-amenities-cta-card {
    position: relative;
    height: 100%;
    min-height: 0;
    background-image: url('../images/host/host2.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 50px;
}
.bf-amenities-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4,6,24,0.88) 0%, rgba(108,123,116,0.75) 100%);
}
.bf-amenities-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 420px;
}
.bf-amenities-logo {
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease;
}
.bf-amenities-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}
.bf-amenities-cta-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.bf-amenities-cta-btn {
    display: inline-block;
    padding: 16px 45px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}
.bf-amenities-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #6c7b74;
    transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.bf-amenities-cta-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108,123,116,0.5);
}
.bf-amenities-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Contenido de Amenities */
.bf-amenities-content {
    padding: 50px 50px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bf-amenities-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    display: inline-block;
}
.bf-amenities-title span {
    font-style: normal;
    color: #6c7b74;
}
.bf-amenities-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6c7b74 0%, transparent 100%);
}
.bf-amenities-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #585960;
    margin-bottom: 40px;
    margin-top: 20px;
}

/* Grid de Amenities */
.bf-amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
}
.bf-amenity-item-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    background: transparent;
}
.bf-amenity-item-hero i {
    font-size: 2rem;
    color: #6c7b74;
    flex-shrink: 0;
}
.bf-amenity-item-hero span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #585960;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
    .bf-section-main-title {
        font-size: 2.6rem;
    }
    .bf-section-header {
        margin-bottom: 50px;
    }
    .bf-sliders-row {
        margin-bottom: 60px;
    }
    .bf-slider-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .bf-amenities-hero-wrapper {
        margin-top: 0;
        border-radius: 15px;
    }
    .bf-amenities-cta-card {
        min-height: 500px;
        padding: 60px 40px;
    }
    .bf-amenities-content {
        padding: 60px 45px;
    }
    .bf-amenities-title {
        font-size: 2.5rem;
    }
    .bf-amenities-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .bf-section-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 0 15px;
    }
    .bf-section-label::before,
    .bf-section-label::after {
        width: 20px;
    }
    .bf-section-label::before {
        left: -25px;
    }
    .bf-section-label::after {
        right: -25px;
    }
    .bf-section-main-title {
        font-size: 2rem;
    }
    .bf-section-subtitle {
        font-size: 0.95rem;
    }
    .bf-section-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    .bf-sliders-row {
        margin-bottom: 15px;
    }
    .bf-slider-col {
        margin-bottom: 15px;
    }
    .bf-slider-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    .bf-slider-title::after {
        width: 60px;
    }
    .caract-slider,
    .edificio-slider {
        border-radius: 12px;
    }
    .caract-slider figure,
    .edificio-slider figure {
        height: auto;
    }
    .caract-slider img,
    .edificio-slider img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .bf-amenities-hero-wrapper {
        border-radius: 12px;
        margin-top: 0;
    }
    .bf-amenities-cta-card {
        min-height: 450px;
        padding: 50px 35px;
    }
    .bf-amenities-logo img {
        max-width: 160px;
    }
    .bf-amenities-cta-title {
        font-size: 1.7rem;
        margin-bottom: 30px;
    }
    .bf-amenities-cta-btn {
        padding: 14px 35px;
        font-size: 0.9rem;
    }
    .bf-amenities-content {
        padding: 50px 30px;
    }
    .bf-amenities-title {
        font-size: 2rem;
    }
    .bf-amenities-title::after {
        width: 70px;
        height: 2px;
    }
    .bf-amenities-desc {
        font-size: 0.92rem;
        margin-bottom: 30px;
    }
    .bf-amenity-item-hero {
        gap: 12px;
        padding: 10px;
    }
    .bf-amenity-item-hero i {
        font-size: 1.6rem;
    }
    .bf-amenity-item-hero span {
        font-size: 0.7rem;
    }
}
    .bf-amenities-desc {
        font-size: 0.9rem;
    }
    .bf-amenity-item-hero span {
        font-size: 0.68rem;
    }


/* ========================
   10. Amenities Icons Grid
======================== */
.bf-amenities-section {
    background: #fff !important;
}
.bf-amenities-grid-wrap {
    margin-top: 40px;
}
.amenities-icons-grid {
    row-gap: 30px;
}
.bf-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.bf-amenity-icon {
    font-size: 2.2rem;
    color: #6c7b74;
}
.bf-amenity-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #585960;
    text-align: center;
    line-height: 1.3;
}


/* ========================
   11. Características Slider
======================== */

/* Sección Principal */
.bf-slider-section {
    padding-top: 100px;
    overflow-x: hidden;
}

/* Header de Sección */
.bf-section-header {
    margin-bottom: 60px;
    padding-bottom: 30px;
    position: relative;
}
.bf-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #6c7b74;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}
.bf-section-label::before,
.bf-section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #6c7b74;
}
.bf-section-label::before {
    left: -35px;
}
.bf-section-label::after {
    right: -35px;
}
.bf-section-main-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}
.bf-section-main-title span {
    color: #6c7b74;
    font-style: italic;
}
.bf-section-subtitle {
    font-size: 1.05rem;
    color: #585960;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Sustentabilidad Block */
.bf-sustentabilidad-block {
    padding: 0;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Editorial Text Block */
.bf-editorial-text {
    padding: 20px 10px 20px 50px;
}
.bf-editorial-text .bf-section-label {
    display: inline-block;
    margin-bottom: 16px;
}
/* Stats grid */
.bf-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
}
@media (max-width: 575px) {
    .bf-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.bf-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bf-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 6px;
}
.bf-stat-num small {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #6c7b74;
}
.bf-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8a9490;
    font-weight: 600;
}
.bf-stat-note {
    font-size: 0.82rem;
    color: #8a9490;
    padding: 14px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-top: none;
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.bf-stat-note i {
    color: #6c7b74;
    font-size: 1rem;
    flex-shrink: 0;
}
/* Fichas */
.bf-proyecto-fichas {
    margin-bottom: 36px;
}
.bf-ficha-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.93rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bf-ficha-item:first-child {
    border-top: 1px solid rgba(0,0,0,0.07);
}
.bf-ficha-item i {
    font-size: 1.1rem;
    color: #6c7b74;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.bf-editorial-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 22px;
}
.bf-editorial-title span {
    color: #6c7b74;
    font-style: italic;
}
.bf-editorial-body {
    font-size: 1rem;
    color: #585960;
    line-height: 1.85;
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.bf-editorial-body:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.bf-editorial-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c7b74;
    border-bottom: 2px solid #6c7b74;
    padding-bottom: 4px;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
}
.bf-editorial-cta:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}
@media (max-width: 767px) {
    .bf-editorial-title { font-size: 1.5rem; }
    .bf-editorial-text { padding: 10px 0 5px; }
}
.bf-sust-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.bf-sust-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #6c7b74;
    font-weight: 600;
    margin: 0 0 10px;
}
.bf-sust-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
    line-height: 1.15;
}
.bf-sust-lead {
    font-size: 0.93rem;
    color: #8a9490;
    line-height: 1.7;
    margin: 0;
}
.bf-sust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
}
.bf-sust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 20px;
    border-right: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.bf-sust-item:hover {
    background: rgba(108,123,116,0.04);
}
.bf-sust-item i {
    font-size: 1.4rem;
    color: #6c7b74;
    flex-shrink: 0;
}
.bf-sust-item span {
    font-size: 0.87rem;
    color: #3a3a3a;
    line-height: 1.4;
    font-weight: 500;
}
@media (max-width: 767px) {
    .bf-sustentabilidad-block {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    .bf-sust-items {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .bf-sust-header {
        gap: 14px;
    }
    .bf-sust-title {
        font-size: 2.2rem;
    }
}

/* Sliders Row */
.bf-sliders-row {
    margin-bottom: 80px;
}

/* Slider Column */
.bf-slider-col {
    height: 100%;
}
.bf-slider-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #6c7b74;
    position: relative;
}
.bf-slider-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #6c7b74;
    box-shadow: 0 2px 8px rgba(108,123,116,0.3);
}

.bf-caract-wrapper {
    margin-bottom: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.caract-slider,
.edificio-slider {
    overflow: hidden;
}
.caract-slider figure,
.edificio-slider figure {
    margin: 0;
}
.caract-slider img,
.edificio-slider img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}



/* ========================
   12. Biofilia Section
======================== */
.bf-biofilia-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.bf-biofilia-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(30,50,100,0.11);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: -5px;
    z-index: 2;
    mix-blend-mode: multiply;
}
.bf-biofilia-container {
    position: relative;
    z-index: 1;
}
.bf-biofilia-header-row {
    margin-bottom: 60px;
}
.bf-biofilia-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color, #1a1a1a);
    margin-bottom: 14px;
}
.bf-biofilia-title {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 0;
    color: #1a1a1a;
}
.bf-biofilia-intro-col {
    padding-top: 20px;
}
.bf-biofilia-intro-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.9;
    margin: 0;
}
.bf-biofilia-strategies-row {
    gap: 24px 0;
    margin-bottom: 60px;
}
.bf-biofilia-card {
    border: 1px solid rgba(30,50,100,0.15);
    border-radius: 20px;
    padding: 44px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #fafafa;
}
.bf-biofilia-card-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(30,50,100,0.14);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.bf-biofilia-card-icon {
    font-size: 3rem;
    color: var(--primary-color, #1a1a1a);
    display: block;
    margin-bottom: 22px;
}
.bf-biofilia-card-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.bf-biofilia-card-divider {
    width: 36px;
    height: 2px;
    background: var(--primary-color, #1a1a1a);
    margin-bottom: 18px;
}
.bf-biofilia-card-text {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.85;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bf-biofilia-separator {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.bf-biofilia-separator-line {
    flex: 1;
    height: 1px;
    background: rgba(30,50,100,0.1);
}
.bf-biofilia-separator-label {
    margin: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color, #1a1a1a);
    white-space: nowrap;
}
.bf-benefit-col-first {
    padding: 0 30px 0 0;
    border-right: 1px solid rgba(30,50,100,0.1);
}
.bf-benefit-col-mid {
    padding: 0 30px;
    border-right: 1px solid rgba(30,50,100,0.1);
}
.bf-benefit-col-last {
    padding: 0 0 0 30px;
}
.bf-benefit-icon {
    font-size: 2.6rem;
    color: var(--primary-color, #1a1a1a);
    display: block;
    margin-bottom: 18px;
}
.bf-benefit-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.bf-benefit-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}
@media (max-width: 991px) {
    .bf-benefit-col-first,
    .bf-benefit-col-mid,
    .bf-benefit-col-last {
        border-right: none;
        padding: 0 0 30px 0;
    }
    .bf-benefit-col-last { padding-bottom: 0; }
    .bf-biofilia-card { padding: 30px 25px; }
}
@media (max-width: 767px) {
    .bf-biofilia-section { padding: 60px 0; }
    .bf-biofilia-title { font-size: 2rem; }
}

/* Imagen dentro de las cartas de biofilia */
.bf-biofilia-card-image {
    margin: 20px 0 0 0;
    border-radius: 12px;
    overflow: hidden;
}
.bf-biofilia-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Botón Ver Beneficios */
.bf-beneficios-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
    padding: 12px 20px;
    background: #6c7b74;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    justify-content: center;
    transition: all 0.3s ease;
}
.bf-beneficios-btn:hover {
    background: #5a685f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108,123,116,0.35);
}
.bf-beneficios-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* Sección colapsable de beneficios */
.bf-beneficios-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.5s ease, margin-top 0.4s ease;
    margin-top: 0;
}
.bf-beneficios-section.bf-beneficios-visible {
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}

/* Imagen final de biofilia + Instagram Card */
.bf-biofilia-final-row {
    margin-top: 60px;
    align-items: stretch;
}
.bf-biofilia-final-image {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    height: 100%;
}
.bf-biofilia-final-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Instagram Card */
.bf-instagram-card {
    background: #fafafa;
    border: 1px solid rgba(4,6,24,0.08);
    border-radius: 15px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.bf-instagram-icon {
    font-size: 3.5rem;
    color: #585960;
    margin-bottom: 25px;
    opacity: 0.9;
}
.bf-instagram-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.bf-instagram-title span {
    color: #5F9E6E;
}
.bf-instagram-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #585960;
    margin-bottom: 35px;
    max-width: 450px;
}
.bf-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5F9E6E;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(95,158,110,0.25);
}
.bf-instagram-btn i {
    font-size: 1.3rem;
}
.bf-instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(95,158,110,0.35);
    background: #4d8559;
    color: #fff;
}

@media (max-width: 991px) {
    .bf-biofilia-final-row {
        margin-top: 40px;
    }
    .bf-biofilia-final-row .col-lg-6:first-child {
        margin-bottom: 30px;
    }
    .bf-instagram-card {
        padding: 40px 30px;
    }
    .bf-instagram-title {
        font-size: 1.9rem;
    }
}
@media (max-width: 767px) {
    .bf-biofilia-final-row {
        margin-top: 30px;
    }
    .bf-instagram-card {
        padding: 35px 25px;
    }
    .bf-instagram-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    .bf-instagram-title {
        font-size: 1.6rem;
    }
    .bf-instagram-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    .bf-instagram-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}


/* ========================
   Avance de Obra Section
======================== */
.bf-avance-obra-section {
    padding: 100px 0;
    background: #fff;
}
.bf-avance-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2D7FC1;
    margin-bottom: 10px;
    font-weight: 600;
}
.bf-avance-title {
    font-size: 3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.bf-avance-title span {
    color: #2D7FC1;
}
.bf-avance-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}
.bf-avance-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bf-avance-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
    color: #fff;
}
.bf-avance-btn i {
    font-size: 1.2rem;
}
.bf-avance-image {
    margin: 0;
    border-radius: 15px;
    overflow: hidden;
}
.bf-avance-image img {
    width: 100%;
    height: auto;
    display: block;
}
.bf-avance-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(45, 127, 193, 0.1);
    border: 2px dashed rgba(45, 127, 193, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D7FC1;
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 991px) {
    .bf-avance-image {
        margin-top: 40px;
    }
}
@media (max-width: 767px) {
    .bf-avance-obra-section {
        padding: 60px 0;
    }
    .bf-avance-title {
        font-size: 2.2rem;
    }
    .bf-avance-placeholder {
        height: 300px;
    }
}


/* ========================
   13. Plantas section
======================== */
.plantas-section {
    padding: 80px 0;
    background: #f5f5f0;
}
.bf-plantas-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .plantas-section { padding: 50px 0; }
}


/* ========================
   14. Formulario Contacto
======================== */
.bf-form-section {
    padding: 100px 0;
}
.bf-form-outer-row {
    gap: 50px 0;
}
.bf-form-label-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}
.bf-form-title {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.bf-form-title span {
    color: #fff;
}
.bf-form-body-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin-bottom: 30px;
}
.bf-form-info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bf-form-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bf-form-info-icon {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
}
.bf-form-info-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}
.bf-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
}
.bf-form-fields-row {
    gap: 20px 0;
}
.bf-input-wrapper {
    position: relative;
}
.bf-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    z-index: 1;
    pointer-events: none;
}
.bf-form-input,
.bf-form-select,
.bf-form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.bf-form-input:focus,
.bf-form-select:focus,
.bf-form-textarea:focus {
    border-color: rgba(255,255,255,0.5);
}
.bf-form-input {
    padding: 14px 16px 14px 44px;
}
.bf-form-select {
    padding: 14px 16px 14px 44px;
    appearance: none;
    cursor: pointer;
    color: rgba(255,255,255,0.6);
}
.bf-form-select:focus {
    color: #fff;
}
.bf-form-select option {
    background: #2a2f3e;
}
.bf-chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    pointer-events: none;
}
.bf-tel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.bf-tel-prefix {
    position: absolute;
    left: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    z-index: 1;
    pointer-events: none;
}
.bf-tel-input {
    padding: 14px 16px 14px 50px;
}
.bf-form-textarea {
    padding: 14px 16px;
    resize: none;
}
.bf-form-submit {
    width: 100%;
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.bf-form-submit:hover {
    background: rgba(255,255,255,0.85);
}
.bf-form-submit-icon {
    font-size: 1.2rem;
}
@media (max-width: 767px) {
    .bf-form-section  { padding: 60px 0; }
    .bf-form-card     { padding: 25px 20px; }
    .bf-form-title    { font-size: 1.8rem; }
    .bf-destacados-left,
    .bf-destacados-right { padding: 0 12px 20px !important; }
}


/* ========================
   15. Otros Proyectos
======================== */
.bf-otros-section {
    padding: 80px 0;
}

/* ========================
   16. Magnific Popup — fondo blanco para imagen edificio
======================== */
.mfp-img[src*="detalleEdificio"] {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
}
