/* ============================================================
   SECTIONS.CSS — CSS extraído del index.html
   Todas las secciones below-the-fold
   ============================================================ */

/* ============================================================
   ESTILOS: UMBRAL DE BIENVENIDA (SIGNATURE STRIP)
   ============================================================ */

.nomada-welcome-strip {
    background-color: #ffffff;
    padding: 0 0 40px 0; 
    border-bottom: 1px solid rgba(12, 26, 58, 0.05); 
    position: relative;
    z-index: 10;
}

.nws-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px; 
}

.nws-brand-col {
    flex: 0 0 35%; 
    text-align: right; 
}

.nws-label {
    display: block;
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: #86868b;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.nws-title {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    font-size: 2rem;
    font-weight: 800;
    color: #0C1A3A;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}

.nws-title .gold-text {
    color: #C7A14A;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
}

.nws-divider {
    width: 2px;
    height: 70px;
    background: linear-gradient(to bottom, transparent, #C7A14A, transparent);
    margin: 0 40px; 
}

.nws-text-col {
    flex: 0 0 55%; 
    text-align: left;
}

.nws-paragraph {
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 900px) {
    .nws-inner {
        flex-direction: column; 
        text-align: center;
        gap: 20px;
        padding-top: 30px;
    }
    .nws-brand-col {
        text-align: center;
    }
    .nws-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, #C7A14A, transparent);
        margin: 0;
    }
    .nws-text-col {
        text-align: center;
    }
    .nomada-welcome-strip {
        padding: 0 20px 35px 20px;
    }
}


/* ============================================================
   ESTILOS: VTC SHOWCASE (PANELES DE SERVICIOS)
   ============================================================ */

#servicios::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 150px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(12, 26, 58, 0.1) 100%);
    pointer-events: none; z-index: 1;
}
.vtc-showcase {
    display: flex; width: 100vw; max-width: 100%; height: 600px;
    background: #ffffff; overflow: hidden; position: relative; z-index: 2;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.vtc-panel {
    flex: 1; position: relative; overflow: hidden; transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer; border-right: 1px solid rgba(12, 26, 58, 0.08);
}
.vtc-panel:last-child { border-right: none; }
.vtc-panel:hover { flex: 2.2; }
.vtc-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.95) saturate(1.1); transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.03);
}
.vtc-panel:hover .vtc-img { filter: brightness(1.05) saturate(1.2); transform: scale(1); }
.vtc-panel::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12, 26, 58, 0.9) 0%, rgba(12, 26, 58, 0.5) 40%, rgba(12, 26, 58, 0.1) 100%);
    transition: opacity 0.5s ease;
}
.vtc-panel:hover::after { background: linear-gradient(to top, rgba(12, 26, 58, 0.85) 0%, rgba(12, 26, 58, 0.3) 50%, transparent 100%); }
.vtc-content {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 45px 35px; z-index: 2;
    color: white; display: flex; flex-direction: column; justify-content: flex-end;
}
.vtc-icon {
    font-size: 2.2rem; color: #C7A14A; margin-bottom: 15px; transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0.9;
}
.vtc-panel:hover .vtc-icon { transform: translateY(0); opacity: 1; }
.vtc-title {
    font-family: var(--font-title, 'Montserrat', sans-serif); font-size: clamp(1.5rem, 2.2vw, 2.2rem);
    font-weight: 800; margin: 0 0 5px 0; white-space: nowrap; text-transform: uppercase;
    letter-spacing: 0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.vtc-details {
    opacity: 0.85; max-height: 60px; overflow: hidden; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateY(0);
}
.vtc-panel:hover .vtc-details { opacity: 1; max-height: 250px; margin-top: 20px; transform: translateY(0); }
.vtc-features { list-style: none; padding: 0; margin: 0 0 25px 0; }
.vtc-features li {
    font-family: var(--font-text, 'Poppins', sans-serif); font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9); margin-bottom: 10px; display: flex; align-items: center;
    gap: 12px; font-weight: 500;
}
.vtc-features li i { color: #10b981; font-size: 1rem; }
.vtc-btn {
    display: inline-flex; align-items: center; gap: 12px; background: #C7A14A; color: #0C1A3A;
    padding: 14px 28px; text-decoration: none; font-family: var(--font-title, 'Montserrat', sans-serif);
    font-weight: 700; font-size: 0.9rem; text-transform: uppercase; border-radius: 4px;
    transition: all 0.3s ease; width: max-content; box-shadow: 0 4px 15px rgba(199, 161, 74, 0.3);
}
.vtc-btn:hover { background: #ffffff; color: #0C1A3A; transform: translateY(-3px); box-shadow: 0 8px 25px rgba(199, 161, 74, 0.4); }

@media (max-width: 900px) {
    .vtc-showcase { flex-direction: column; height: auto; }
    .vtc-panel { flex: none; height: 300px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .vtc-panel:hover { flex: none; }
    .vtc-details { opacity: 1; max-height: 250px; margin-top: 15px; transform: translateY(0); }
    .vtc-icon { transform: translateY(0); font-size: 1.6rem; margin-bottom: 10px; }
    .vtc-content { padding: 30px 25px; }
    .vtc-features li { font-size: 0.85rem; margin-bottom: 6px; }
    .vtc-btn { padding: 12px 24px; font-size: 0.85rem; }
    #servicios::after { display: none; }
}


/* ============================================================
   ESTILOS: BOOKING MEGA SECTION
   ============================================================ */

.booking-mega-section {
    position: relative;
    padding: 100px 0 120px 0;
    overflow: hidden; 
}

.white-fade-top-subtle {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 60px; 
    background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.6) 30%, transparent 80%);
    z-index: 3; pointer-events: none;
}

.booking-vip-bg {
    position: absolute;
    top: -10%; left: -10%; right: -10%; bottom: -10%; 
    background-image: url('../img/Nomada_HR-78.jpg');
    background-size: cover; background-position: center;
    animation: cinematicZoom 25s ease-in-out infinite alternate;
    z-index: 0;
}

.booking-vip-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12, 26, 58, 0.85) 0%, rgba(12, 26, 58, 0.85) 40%, rgba(12, 26, 58, 0.75) 100%);
    z-index: 1;
}

.relative-z { position: relative; z-index: 5; }

@keyframes cinematicZoom {
    0% { transform: scale(1); } 100% { transform: scale(1.12); }
}

.booking-cta-header {
    text-align: center; max-width: 900px; margin: 0 auto 60px auto; padding: 0 20px;
}

@keyframes premiumTitleReveal {
    0% { opacity: 0; transform: translateY(40px); filter: blur(12px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.mega-cta-title {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    animation: premiumTitleReveal 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.2s;
}

@keyframes attentionPulseShine {
    0% {
        transform: scale(1);
        background-position: 0% center;
        filter: drop-shadow(0 0 0 rgba(199, 161, 74, 0));
    }
    20% {
        transform: scale(1.08);
        background-position: 100% center;
        filter: drop-shadow(0 0 15px rgba(199, 161, 74, 0.8));
    }
    100% {
        transform: scale(1);
        background-position: 200% center;
        filter: drop-shadow(0 0 0 rgba(199, 161, 74, 0));
    }
}

.gold-shine-text {
    background: linear-gradient(
        to right,
        #C7A14A 0%,
        #fffadc 20%,
        #C7A14A 40%,
        #C7A14A 100%
    );
    background-size: 200% auto;
    color: #C7A14A;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: attentionPulseShine 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: 1s; 
}

.mega-cta-subtitle {
    font-family: var(--font-text, 'Poppins', sans-serif);
    color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; line-height: 1.6; margin-bottom: 35px;
    animation: premiumTitleReveal 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.4s;
}

.mega-cta-actions {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
    animation: premiumTitleReveal 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation-delay: 0.6s;
}

.btn-mega-primary {
    background: #C7A14A; color: #0C1A3A; border: none; padding: 14px 35px;
    font-family: var(--font-title, 'Montserrat', sans-serif); font-size: 1rem;
    font-weight: 800; border-radius: 50px; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
    transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(199, 161, 74, 0.3);
}
.btn-mega-primary:hover {
    background: #ffffff; color: #0C1A3A; transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.btn-mega-whatsapp {
    background: rgba(255, 255, 255, 0.05); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px; font-size: 1rem; font-weight: 600; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
    transition: all 0.3s ease; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.btn-mega-whatsapp i { color: #25D366; font-size: 1.3rem; }
.btn-mega-whatsapp:hover {
    background: rgba(255, 255, 255, 0.15); border-color: #ffffff; transform: translateY(-3px);
}

.booking-glass-terminal {
    display: flex; background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px; box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden; width: 100%; max-width: 1200px; margin: 0 auto; position: relative;
}
.booking-glass-terminal::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, #C7A14A, #ffffff, #C7A14A, transparent);
    animation: laserSweep 5s infinite linear; z-index: 10;
}
@keyframes laserSweep { 0% { left: -100%; } 100% { left: 200%; } }

.glass-sidebar { width: 45%; padding: 60px 50px; color: #ffffff; display: flex; flex-direction: column; justify-content: center; }
.glass-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(199, 161, 74, 0.15); border: 1px solid rgba(199, 161, 74, 0.4); color: #C7A14A; padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; width: fit-content; }

.glass-title { font-family: var(--font-title, 'Montserrat', sans-serif); font-size: clamp(2.2rem, 3vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.gold-text { color: #C7A14A; }

.glass-subtitle { font-family: var(--font-text, 'Poppins', sans-serif); font-size: 1.05rem; line-height: 1.6; color: rgba(255, 255, 255, 0.85); margin-bottom: 45px; }
.trust-signals { display: flex; flex-direction: column; gap: 15px; }
.trust-item { display: flex; align-items: center; gap: 18px; padding: 12px 15px; border-radius: 14px; transition: 0.4s; border: 1px solid transparent; cursor: default; }
.trust-item:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); transform: translateX(10px); }
.trust-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.08); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #C7A14A; font-size: 1.3rem; border: 1px solid rgba(255,255,255,0.1); transition: 0.4s; }
.trust-item:hover .trust-icon { background: #C7A14A; color: #0C1A3A; transform: scale(1.1) rotate(5deg); }
.trust-text { display: flex; flex-direction: column; }
.trust-text strong { font-size: 1.05rem; color: #ffffff; font-weight: 600; margin-bottom: 3px; }
.trust-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: 0.3s; }
.trust-item:hover .trust-text span { color: rgba(255,255,255,0.9); }

.glass-form-area { width: 55%; background: transparent; padding: 40px; display: flex; align-items: center; justify-content: center; }
.form-golden-frame { width: 100%; height: 100%; background: rgba(12, 26, 58, 0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(199, 161, 74, 0.4); border-radius: 16px; padding: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

@media (max-width: 992px) {
    .booking-glass-terminal { flex-direction: column; }
    .glass-sidebar { width: 100%; padding: 40px 30px; }
    .glass-form-area { width: 100%; padding: 20px; }
    .trust-signals { flex-direction: row; flex-wrap: wrap; gap: 5px; }
    .trust-item { flex: 1 1 calc(50% - 10px); min-width: 150px; padding: 10px; }
    .trust-item:hover { transform: translateY(-5px); }
    .nomada-iframe-container { min-height: 650px; }
}
@media (max-width: 600px) {
    .mega-cta-actions { flex-direction: column; gap: 15px; }
    .btn-mega-primary, .btn-mega-whatsapp { width: 100%; justify-content: center; }
}


/* ============================================================
   ESTILOS: FLEET SECTION V5
   ============================================================ */

.ap-fleet-section-v5 {
    background-color: #ffffff;
    padding: 80px 0 60px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.ap-header-v5 { text-align: center; margin-bottom: 40px; }
.ap-title-v5 {
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -1px;
    line-height: 1.1; color: #0C1A3A; margin: 0;
}
.text-gradient-gold {
    background: linear-gradient(90deg, #C7A14A 0%, #f3e5b6 50%, #C7A14A 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.ap-full-width-slider-v5 {
    position: relative; width: 100%; height: 60vh; min-height: 450px; max-height: 700px;
    overflow: hidden;
}
.ap-slide-v5 {
    position: absolute; inset: 0; background-size: cover; opacity: 0; transform: scale(1.05);
    transition: opacity 0.8s ease, transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.ap-slide-v5.active { opacity: 1; transform: scale(1); z-index: 1; }
.ap-overlay-v5 {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to top, rgba(12, 26, 58, 0.9) 0%, rgba(12, 26, 58, 0.3) 50%, transparent 100%);
}

.ap-floating-corner-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(12, 26, 58, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 15px 10px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ap-fcb-icon {
    color: #C7A14A;
    font-size: 1.2rem;
    display: flex; align-items: center;
}
.ap-fcb-text {
    display: flex; flex-direction: column;
}
.ap-fcb-sub {
    color: rgba(255,255,255,0.7); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.ap-fcb-title {
    color: #ffffff; font-family: var(--font-title, 'Montserrat', sans-serif); font-weight: 700; font-size: 1rem; line-height: 1.1;
}
.ap-fcb-arrow {
    color: #C7A14A; font-size: 1rem; margin-left: 5px; transition: transform 0.3s ease;
}

.ap-floating-corner-btn:hover {
    background: rgba(12, 26, 58, 0.85);
    border-color: rgba(199, 161, 74, 0.5);
    transform: translateY(-2px);
}
.ap-floating-corner-btn:hover .ap-fcb-arrow { transform: translateX(5px); }

.ap-overlap-container-v5 {
    position: relative; z-index: 20; 
    margin-top: -90px;
    pointer-events: none;
}
.ap-details-container-v5 { 
    max-width: 1100px; margin: 0 auto; 
    pointer-events: auto;
}

.ap-nav-wrapper-v5 { text-align: center; margin-bottom: 25px; }
.ap-ios-nav-v5 {
    display: inline-flex; background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px); padding: 5px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.5);
}
.ap-nav-pill-v5 {
    padding: 10px 28px; border-radius: 40px; font-size: 0.9rem; font-weight: 600;
    color: #6c757d; cursor: pointer; transition: all 0.3s ease;
}
.ap-nav-pill-v5.active { background: #0C1A3A; color: #ffffff; box-shadow: 0 4px 15px rgba(12, 26, 58, 0.2); }

.ap-info-bar-v5 {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    opacity: 0; transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.ap-info-bar-v5.active { display: flex; opacity: 1; transform: translateY(0); }

.ap-ib-header { flex-shrink: 0; }
.ap-ib-cat { display: block; color: #C7A14A; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ap-ib-name { font-family: var(--font-title, 'Montserrat', sans-serif); font-size: 1.5rem; font-weight: 800; color: #0C1A3A; margin: 0; line-height: 1.2; }
.ap-ib-model { font-weight: 500; color: #6c757d; font-size: 1.1rem; margin-left: 5px; }
.ap-ib-specs { display: flex; gap: 25px; flex-grow: 1; justify-content: center; }
.ap-ib-spec-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: #0C1A3A; white-space: nowrap; }
.ap-ib-spec-item i { color: #C7A14A; font-size: 1.1rem; }
.ap-ib-btn { flex-shrink: 0; background: #0C1A3A; color: #ffffff; padding: 12px 28px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(12, 26, 58, 0.2); }
.ap-ib-btn:hover { background: #C7A14A; color: #0C1A3A; transform: translateY(-2px); }

@media (max-width: 992px) {
    .ap-full-width-slider-v5 { height: 50vh; min-height: 400px; }
    .ap-overlap-container-v5 { margin-top: -130px; }
    
     .ap-info-bar-v5.active {
        display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
        padding: 20px; gap: 20px; scrollbar-width: none; -ms-overflow-style: none;
    }
    .ap-info-bar-v5::-webkit-scrollbar { display: none; }
    .ap-ib-header, .ap-ib-specs, .ap-ib-btn { flex-shrink: 0; }
    .ap-ib-specs { gap: 20px; margin: 0 10px; }
    .ap-ib-name { font-size: 1.3rem; }
    .ap-ib-model { display: block; margin-left: 0; font-size: 1rem; margin-top: 2px;}

    .ap-ios-nav-v5 { width: 100%; justify-content: space-between; }
    .ap-nav-pill-v5 { padding: 10px 5px; flex: 1; text-align: center; font-size: 0.8rem; }

    .ap-floating-corner-btn {
        bottom: auto;
        top: 20px;
        right: 20px;
        padding: 8px 12px;
        backdrop-filter: blur(10px);
    }
    .ap-fcb-sub { display: none; }
    .ap-fcb-title { font-size: 0.9rem; }
    .ap-fcb-icon { font-size: 1rem; }
}


/* ============================================================
   ESTILOS: REVIEWS SHOWCASE
   ============================================================ */

.reviews-showcase-section {
    background-color: #0C1A3A;
    padding: 120px 0 140px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(199, 161, 74, 0.1);
}

.reviews-ambient-light {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(199, 161, 74, 0.08) 0%, rgba(12, 26, 58, 0) 60%);
    z-index: 0;
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.reviews-title-inline {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    color: #ffffff;
    font-size: clamp(1.8rem, 4vw, 3.5rem); 
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.reviews-subtitle {
    font-family: var(--font-text, 'Poppins', sans-serif);
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-widget-showcase {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.reviews-widget-showcase:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 161, 74, 0.5);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 40px rgba(199, 161, 74, 0.1);
}

@media (max-width: 900px) {
    .reviews-title-inline {
        font-size: clamp(1.4rem, 3.5vw, 2rem); 
    }
}

@media (max-width: 576px) {
    .reviews-showcase-section { padding: 80px 0 100px; }
    .reviews-title-inline {
        white-space: normal; 
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .reviews-subtitle { font-size: 1rem; }
    .reviews-widget-showcase { padding: 10px; border-radius: 16px; }
}


/* ============================================================
   ESTILOS: MINIMAL TRUST BAR (GARANTÍAS)
   ============================================================ */

.minimal-trust-bar {
    background-color: #0C1A3A;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.minimal-trust-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: #C7A14A;
}

.trust-grid-minimal {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.tm-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0.85;
}

.tm-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.tm-icon-box {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.tm-item:hover .tm-icon-box {
    color: #C7A14A;
    text-shadow: 0 0 15px rgba(199, 161, 74, 0.4);
}

.tm-content {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .trust-grid-minimal { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 600px) {
    .minimal-trust-bar { padding: 30px 10px; }
    .trust-grid-minimal { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .tm-icon-box { font-size: 1.4rem; margin-bottom: 8px; }
    .tm-content { font-size: 0.65rem; white-space: normal; line-height: 1.2; }
}


/* ============================================================
   ESTILOS: FAQ + CONTACTO — WHITE & GOLD
   ============================================================ */

.d3-gold-border {
    height: 5px;
    background: linear-gradient(90deg, #0C1A3A 0%, #C7A14A 20%, #f3e5b6 50%, #C7A14A 80%, #0C1A3A 100%);
}

.d3-section {
    background: #ffffff;
    padding: 80px 0 100px;
}

.d3-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.d3-header {
    text-align: center;
    margin-bottom: 60px;
}

.d3-title {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    color: #0C1A3A;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.d3-title span { color: #C7A14A; }

.d3-sub {
    color: #8896a6;
    font-size: 0.95rem;
    font-family: var(--font-text, 'Poppins', sans-serif);
}

.d3-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}

.d3-faq {
    border-left: 3px solid #C7A14A;
    padding-left: 30px;
}

.d3-item {
    border-bottom: 1px solid #eef1f5;
    overflow: hidden;
}
.d3-item:last-child { border-bottom: none; }

.d3-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 12px;
    transition: all 0.2s ease;
}
.d3-q:hover { padding-left: 5px; }

.d3-q-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    text-align: left;
}

.d3-q-icon {
    color: #C7A14A;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(199, 161, 74, 0.06);
    border-radius: 10px;
    transition: all 0.3s ease;
}
.d3-item.active .d3-q-icon {
    background: #0C1A3A;
    color: #C7A14A;
}

.d3-q-text {
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0C1A3A;
    line-height: 1.3;
}

.d3-plus {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border: 2px solid #C7A14A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #C7A14A;
    transition: all 0.35s ease;
}
.d3-item.active .d3-plus {
    background: #C7A14A;
    color: #fff;
    transform: rotate(45deg);
}

.d3-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.d3-item.active .d3-a { max-height: 500px; }

.d3-a-inner {
    padding: 0 0 22px 52px;
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.35s ease 0.1s;
}
.d3-item.active .d3-a-inner {
    opacity: 1;
    transform: translateY(0);
}

.d3-a-inner p {
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a6577;
    border-top: 1px solid #f0f2f5;
    padding-top: 14px;
    margin: 0;
}
.d3-a-inner p strong { color: #0C1A3A; font-weight: 600; }

.d3-contact {
    background: #0C1A3A;
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 30px 60px rgba(12, 26, 58, 0.15);
    position: sticky;
    top: 100px;
}

.d3-c-title {
    font-family: var(--font-title, 'Montserrat', sans-serif);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.d3-c-title span { color: #C7A14A; }

.d3-c-sub {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
    margin-bottom: 24px;
    font-family: var(--font-text, 'Poppins', sans-serif);
}

.d3-c-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.d3-c-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.d3-c-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(199, 161, 74, 0.25);
    transform: translateX(4px);
}

.d3-c-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(199, 161, 74, 0.1);
    border: 1px solid rgba(199, 161, 74, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7A14A;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.d3-c-card:hover .d3-c-icon {
    background: #C7A14A;
    color: #0C1A3A;
    border-color: #C7A14A;
}

.d3-c-icon-wa {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25D366;
}
.d3-c-card-wa:hover .d3-c-icon-wa {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.d3-c-info { display: flex; flex-direction: column; }
.d3-c-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 3px;
}
.d3-c-value {
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 600;
}

.d3-sep-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.d3-sep-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}
.d3-sep-text {
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: lowercase;
    white-space: nowrap;
}

.d3-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.d3-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.d3-field-label {
    font-family: var(--font-text, 'Poppins', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3px;
}

.d3-input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.88rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: var(--font-text, 'Poppins', sans-serif);
    resize: vertical;
}
.d3-input:focus {
    border-color: #C7A14A;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(199, 161, 74, 0.1);
}

.d3-rgpd {
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.d3-rgpd-text {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.4;
    margin-bottom: 10px;
}
.d3-rgpd-text a { color: #C7A14A; text-decoration: underline; }

.d3-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.d3-check input { display: none; }
.d3-checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}
.d3-check input:checked + .d3-checkmark {
    background: #C7A14A;
    border-color: #C7A14A;
}
.d3-check input:checked + .d3-checkmark::after {
    content: '';
    position: absolute;
    top: 2px; left: 5px;
    width: 4px; height: 8px;
    border: solid #0C1A3A;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.d3-check-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.d3-btn {
    background: #C7A14A;
    color: #0C1A3A;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-family: var(--font-title, 'Montserrat', sans-serif);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.d3-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(199, 161, 74, 0.25);
}

@media (max-width: 992px) {
    .d3-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .d3-contact {
        position: static;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .d3-section { padding: 50px 0 70px; }
    .d3-container { padding: 0 15px; }
    .d3-faq { padding-left: 15px; border-left-width: 2px; }
    .d3-q { padding: 16px 0; }
    .d3-q-icon { width: 30px; height: 30px; min-width: 30px; font-size: 0.85rem; border-radius: 8px; }
    .d3-q-text { font-size: 0.88rem; }
    .d3-a-inner { padding: 0 0 18px 46px; }
    .d3-a-inner p { font-size: 0.85rem; }
    .d3-contact { padding: 28px 20px; border-radius: 18px; }
    .d3-c-icon { width: 36px; height: 36px; min-width: 36px; font-size: 0.9rem; }
    .d3-c-value { font-size: 0.85rem; }
}

@media (max-width: 420px) {
    .d3-q-icon { display: none; }
    .d3-a-inner { padding: 0 0 16px 0; }
}


/* ============================================================
   STICKY CTA MÓVIL
   ============================================================ */

.mobile-sticky-cta { display: none; }

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        padding: 10px 14px;
        background: rgba(12, 26, 58, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-top: 2px solid #C7A14A;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .mobile-sticky-cta.visible {
        transform: translateY(0);
    }
    .mobile-sticky-cta button {
        width: 100%;
        padding: 14px;
        background: #C7A14A;
        color: #0C1A3A;
        border: none;
        border-radius: 10px;
        font-family: var(--font-title, 'Montserrat', sans-serif);
        font-weight: 800;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    .mobile-sticky-cta button:active {
        background: #ffffff;
    }
}

/* Subir widgets flotantes cuando el sticky CTA está visible */
@media (max-width: 768px) {
    .mobile-sticky-cta.visible ~ .nmd-widgets-wrap,
    body:has(.mobile-sticky-cta.visible) .nmd-widgets-wrap {
        bottom: 90px !important;
        transition: bottom 0.3s ease;
    }
}
