﻿/* ===========================
   ACADEO LOGISTIC - SITE CSS
=========================== */

:root {
    --primary: #1B3A6B; /* ✅ Azul marino exacto del logo */
    --primary-dark: #122548; /* Azul más oscuro */
    --primary-light: #2A5298; /* Azul medio */
    --accent: #FFFFFF; /* Blanco puro */
    --accent-gold: #C8A96E; /* Dorado complemento */
    --light-bg: #F2F4F8; /* Fondo gris muy claro (como el del logo) */
    --dark-bg: #0D1E3D; /* Footer oscuro */
    --text-dark: #1B3A6B;
    --text-gray: #6C757D;
}



* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-top: 72px; /* altura del navbar fijo */
}

/* ===== NAVBAR ===== */
#mainNavbar {
    background-color: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

    #mainNavbar.scrolled {
        border-bottom: 2px solid var(--accent);
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    transition: color 0.3s;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: all 0.3s;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover {
        color: var(--accent) !important;
    }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
/* Logo en navbar */
.navbar-logo {
    height: 45px;
    width: auto;imag
    filter: brightness(0) invert(1); /* Logo blanco en navbar oscuro */
    transition: opacity 0.3s;
}

    .navbar-logo:hover {
        opacity: 0.85;
    }

/* ===== FOOTER ===== */
.footer-dark {
    background-color: var(--dark-bg);
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: block;
    margin-bottom: 6px;
}

    .footer-links a:hover {
        color: var(--accent);
    }

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-icon:hover {
        background: var(--accent);
        color: var(--primary);
        transform: translateY(-3px);
    }
/* =====================================================
   HERO SECTION — Con imagen de fondo
===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* ✅ Imagen de fondo */
    background-image: url('/images/HeroBackground.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* 👈 Efecto parallax suave */
}

/* Overlay degradado lateral */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(10, 22, 40, 0.97) 0%, /* Izquierda → texto oscuro */
    rgba(10, 22, 40, 0.85) 40%, /* Centro izq → transición */
    rgba(10, 22, 40, 0.50) 70%, /* Centro der → semi transparente */
    rgba(10, 22, 40, 0.20) 100% /* Derecha → imagen visible */
    );
    z-index: 1;
}


/* ✅ Todo el contenido encima del overlay */
.hero-content {
    position: relative;
    z-index: 2;
}

/* ✅ Scroll indicator encima del overlay */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    gap: 6px;
    animation: bounce 2s infinite;
    z-index: 3; /* 👈 Encima del overlay */
}


/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

/* Título */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: var(--accent-gold);
    position: relative;
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 560px;
}

/* Botones Hero */
.btn-hero-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(200,169,110,0.4);
}

    .btn-hero-primary:hover {
        background: #d4a843;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(200,169,110,0.5);
        color: var(--primary-dark);
    }

.btn-hero-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

    .btn-hero-outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: #fff;
        color: #fff;
        transform: translateY(-3px);
    }

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Imagen Hero */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-office-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border: 3px solid rgba(255,255,255,0.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
}

.card-top {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.card-bottom {
    bottom: 30px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    gap: 6px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}
/* ── Hero Info Cards ── */
.hero-cards-wrapper {
    position: relative;
    width: 320px;
    height: 400px;
}

.hero-info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: floatCard 4s ease-in-out infinite;
    min-width: 240px;
}

/* Posiciones de cada card */
.card-1 {
    top: 0px;
    left: 0px;
    animation-delay: 0s;
}

.card-2 {
    top: 110px;
    left: 40px;
    animation-delay: 1s;
}

.card-3 {
    top: 220px;
    left: 0px;
    animation-delay: 2s;
}

.card-4 {
    top: 330px;
    left: 30px;
    animation-delay: 0.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-info-icon {
    width: 42px;
    height: 42px;
    background: rgba(27, 58, 107, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

    .hero-info-icon.green {
        background: rgba(25, 135, 84, 0.8);
    }

    .hero-info-icon.gold {
        background: rgba(200, 169, 110, 0.8);
    }

.hero-info-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2px;
}

.hero-info-value {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

/* =====================================================
   TRUST BAND
===================================================== */
.trust-band {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

    .trust-item i {
        font-size: 1.3rem;
        color: var(--accent-gold);
    }

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
    background: var(--light-bg);
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Section Header */
.section-badge {
    display: inline-block;
    background: rgba(27,58,107,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent-gold));
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(27,58,107,0.15);
        border-color: transparent;
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

/* Featured Card */
.service-card-featured {
    background: linear-gradient(135deg, #1B3A6B, #2A5298);
    border-color: transparent;
    color: white;
}

    .service-card-featured .service-title,
    .service-card-featured .service-desc,
    .service-card-featured .service-features li {
        color: rgba(255,255,255,0.9);
    }

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Service Icon */
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.bg-blue {
    background: rgba(27,58,107,0.12);
    color: #1B3A6B;
}

.bg-green {
    background: rgba(25,135,84,0.12);
    color: #198754;
}

.bg-orange {
    background: rgba(253,126,20,0.12);
    color: #fd7e14;
}

.bg-purple {
    background: rgba(111,66,193,0.12);
    color: #6f42c1;
}

.bg-teal {
    background: rgba(13,202,240,0.12);
    color: #0dcaf0;
}

.bg-white-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Service Content */
.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.service-desc {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .service-features li {
        font-size: 0.88rem;
        color: #555;
        padding: 3px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .service-features li i {
            color: #198754;
            font-size: 0.8rem;
        }

.service-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

    .service-link:hover {
        color: var(--accent-gold);
        gap: 8px;
    }

.service-link-white {
    color: rgba(255,255,255,0.9);
}

    .service-link-white:hover {
        color: var(--accent-gold);
    }
/* =====================================================
   QUOTE SECTION
===================================================== */
.quote-section {
    background: var(--light-bg);
}

.quote-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(27,58,107,0.1);
    border: 1px solid #e9ecef;
}

/* Form Section blocks */
.form-section {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

    .form-section:last-of-type {
        border-bottom: none;
    }

.form-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.step-badge {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.form-section-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.form-section-sub {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* Custom Inputs */
.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-group-custom i {
        position: absolute;
        left: 14px;
        color: var(--primary);
        font-size: 0.9rem;
        z-index: 1;
    }

.custom-input {
    padding-left: 40px !important;
    border-radius: 10px !important;
    border: 1.5px solid #dee2e6 !important;
    font-size: 0.92rem !important;
    transition: all 0.3s !important;
    background: #fafbfc !important;
}

    .custom-input:focus {
        border-color: var(--primary) !important;
        box-shadow: 0 0 0 3px rgba(27,58,107,0.1) !important;
        background: #fff !important;
    }

.textarea-custom {
    align-items: flex-start;
}

    .textarea-custom i {
        top: 14px;
    }

/* Service Selector Cards */
.service-selector {
    cursor: pointer;
    display: block;
}


    .selector-card:hover {
        border-color: #1B3A6B !important;
        background: rgba(27,58,107,0.06) !important;
        transform: translateY(-3px);
    }

.service-selector-card {
    border: 2px solid #dee2e6;
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #555;
}

    .service-selector-card i {
        font-size: 1.8rem;
        color: var(--primary);
    }

    .service-selector-card span {
        font-weight: 600;
        font-size: 0.9rem;
    }

    .service-selector-card:hover {
        border-color: var(--primary);
        background: rgba(27,58,107,0.04);
        transform: translateY(-3px);
    }

    .service-selector-card.selected {
        border-color: var(--primary) !important;
        background: linear-gradient(135deg, rgba(27,58,107,0.08), rgba(42,82,152,0.08)) !important;
        box-shadow: 0 4px 15px rgba(27,58,107,0.15);
        color: var(--primary);
    }

        .service-selector-card.selected i {
            color: var(--primary);
        }
/* ── Selector cards activos ── */
.selector-card {
    border: 2px solid #dee2e6;
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
}
/* Small card (FCL/LCL) */
.small-card {
    flex-direction: row !important;
    text-align: left !important;
    padding: 0.9rem 1.2rem !important;
    gap: 12px !important;
}

    .small-card i {
        font-size: 1.3rem !important;
    }

/* Route Arrow */
.route-arrow {
    font-size: 1.8rem;
    color: var(--accent-gold);
    background: rgba(200,169,110,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Custom Check */
.custom-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid #dee2e6;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafbfc;
}

    .custom-check:hover {
        border-color: var(--primary);
    }

    .custom-check .form-check-input:checked ~ .form-check-label {
        color: var(--primary);
    }

/* Submit Button */
.btn-quote-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(27,58,107,0.35);
}

    .btn-quote-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 35px rgba(27,58,107,0.45);
        color: white;
    }

/* =====================================================
   
/* =====================================================
   THANKS / GRACIAS SECTION
===================================================== */
.thanks-section {
    background: var(--light-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(27,58,107,0.12);
    border: 1px solid #e9ecef;
}

/* ── Ícono animado ── */
.thanks-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #198754, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .thanks-icon i {
        font-size: 2.5rem;
        color: white;
    }

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Número de cotización ── */
.quote-number-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(27,58,107,0.1), rgba(42,82,152,0.1));
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid rgba(27,58,107,0.2);
    letter-spacing: 1px;
}

/* ── Título ── */
.thanks-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* ── Subtítulo ── */
.thanks-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ── Pasos siguientes ── */
.next-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
/* =====================================================
   ABOUT / NOSOTROS SECTION
===================================================== */
.about-section {
    background: #ffffff;
}

.about-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

/* ── Imagen wrapper ── */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(27,58,107,0.2);
    object-fit: cover;
    height: 480px;
}

/* ── Badge años ── */
.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(27,58,107,0.4);
    border: 4px solid white;
}

.about-badge-number {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.65rem;
    opacity: 0.9;
    line-height: 1.2;
}

/* ── Float card ── */
.about-float-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--primary);
}

    .about-float-card i {
        font-size: 1.5rem;
    }

.float-card-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.float-card-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-gray);
}

/* ── Misión / Visión ── */
.mv-card {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 1.2rem;
    height: 100%;
    border-top: 3px solid var(--primary);
    transition: all 0.3s;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(27,58,107,0.1);
    }

.mv-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

    .mv-icon.gold {
        background: linear-gradient(135deg, var(--accent-gold), #d4a843);
    }

.mv-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.mv-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ── Valores ── */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(27,58,107,0.06);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s;
}

    .value-item:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

    .value-item i {
        font-size: 0.85rem;
    }

/* ── Botones About ── */
.btn-about-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(27,58,107,0.3);
    font-size: 0.92rem;
}

    .btn-about-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(27,58,107,0.4);
        color: white;
    }

.btn-about-outline {
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    font-size: 0.92rem;
}

    .btn-about-outline:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

/* =====================================================
   COVERAGE / COBERTURA SECTION
===================================================== */
.coverage-section {
    background: linear-gradient(135deg, #0D1E3D 0%, #1B3A6B 60%, #2A5298 100%);
    position: relative;
    overflow: hidden;
}

    .coverage-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
        border-radius: 50%;
    }

/* Badge blanco */
.section-badge-white {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.25);
}

/* ── Stats cobertura ── */
.coverage-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.07);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

    .coverage-stat:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-5px);
    }

    .coverage-stat i {
        font-size: 2rem;
        color: var(--accent-gold);
        display: block;
        margin-bottom: 0.75rem;
    }

.coverage-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.coverage-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* ── Region cards ── */
.region-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

    .region-card:hover {
        background: rgba(255,255,255,0.13);
        transform: translateY(-5px);
        border-color: var(--accent-gold);
    }

.region-icon {
    width: 50px;
    height: 50px;
    background: rgba(200,169,110,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.region-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.region-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .region-list li {
        color: rgba(255,255,255,0.75);
        font-size: 0.88rem;
        padding: 3px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .region-list li i {
            color: var(--accent-gold);
            font-size: 0.75rem;
        }

/* ── CTA Region card ── */
.region-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(200,169,110,0.1);
    border-color: rgba(200,169,110,0.4);
}

    .region-cta:hover {
        background: rgba(200,169,110,0.2);
        border-color: var(--accent-gold);
    }


/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section {
    background: var(--light-bg);
}

/* ── Info Card ── */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(27,58,107,0.08);
    border: 1px solid #e9ecef;
}

.contact-info-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-bg);
}

/* ── Info Items ── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

    .contact-info-item:last-of-type {
        border-bottom: none;
    }

.contact-info-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient( 135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-info-value {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.5;
}

.contact-link {
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-link:hover {
        color: var(--accent-gold);
    }

/* ── Social Icons WhatsApp variante ── */
.whatsapp-icon {
    background: rgba(37,211,102,0.1) !important;
    color: #25D366 !important;
}

    .whatsapp-icon:hover {
        background: #25D366 !important;
        color: white !important;
    }

/* ── Google Maps ── */
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ── Form Card ── */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(27,58,107,0.08);
    border: 1px solid #e9ecef;
}

.contact-form-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

/* ── Submit Button ── */
.btn-contact-submit {
    background: linear-gradient( 135deg, var(--primary), var(--primary-light));
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(27,58,107,0.3);
}

    .btn-contact-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 35px rgba(27,58,107,0.4);
        color: white;
    }
