/* =========================
   TIPOGRAFÍAS
========================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;500;600&display=swap");
body {
    font-family: "Open Sans", sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
}
/* =========================
   TÍTULOS
========================= */
h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    color: #005eb8; /* Azul profesional */
    font-weight: 700;
}
/* =========================
   NAVBAR
========================= */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.navbar-brand span {
    color: #005eb8; /* Azul Consultores */
}
.navbar-nav .nav-link {
    color: #1a1a1a !important;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #00a651 !important;
}
/* =========================
   HERO SECTION
========================= */
.hero-section {
    background: linear-gradient(135deg, #005eb8 0%, #0074d9 100%);
    color: #ffffff;
    padding: 120px 0;
}
.hero-section h1 {
    color: #ffffff;
}
.hero-section p {
    color: #f5f5f5;
}
/* =========================
   BOTONES
========================= */
.btn-primary {
    background-color: #00a651;
    border-color: #00a651;
}
.btn-primary:hover {
    background-color: #008c45;
    border-color: #008c45;
}
.btn-outline-primary {
    border-color: #00a651;
    color: #00a651;
}
.btn-outline-primary:hover {
    background-color: #00a651;
    color: #ffffff;
}
/* =========================
   SECCIONES
========================= */
.section-light {
    background-color: #f5f5f5;
}
.section-white {
    background-color: #ffffff;
}
.section-title {
    margin-bottom: 40px;
    text-align: center;
}
/* =========================
   CARDS
========================= */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
}
/* =========================
   FOOTER 
========================= */
.footer-corporate {
    background: linear-gradient(135deg, #004a94 0%, #002c5f 100%);
    color: #e8f1ff;
    position: relative;
    overflow: hidden;
}

/* animación suave */
.footer-content {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-logo {
    height: 55px;
}

.footer-text {
    font-size: 14px;
    color: #dbeafe;
    line-height: 1.6;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 35px;
    height: 3px;
    background: #00a651;
    display: block;
    margin-top: 6px;
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #dbeafe;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #dbeafe;
}

.footer-contact i {
    margin-right: 6px;
    color: #00ff88;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #00a651;
    transform: translateY(-4px);
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.footer-copy {
    font-size: 13px;
    color: #dbeafe;
}
/* HERO PREMIUM */
.hero-premium {
    background: #fff;
    color: #000;
    padding: 140px 0;
}
.hero-premium h1 {
    color: #000;
}
.hero-premium p {
    color: #000;
}
.navbar-brand img {
    height: 45px;
    width: auto;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #2c3034;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #0d6efd;
    transform: translateY(-4px);
}
/* Planes */
.hover-lift {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hover-lift:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
    }
    
    .divider {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--bs-primary), transparent);
        border-radius: 3px;
    }
    
    .countdown-container {
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .countdown-timer {
        font-family: 'Courier New', monospace;
    }
    
    .countdown-number {
        font-size: 1.2rem;
        font-weight: bold;
        color: #dc3545;
        min-width: 35px;
        display: inline-block;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        color: #6c757d;
        margin-left: 2px;
    }
    
    .countdown-separator {
        font-weight: bold;
        color: #adb5bd;
        margin: 0 2px;
    }
    
    .hover-scale:hover {
        transform: scale(1.02);
    }
    
    .plan-card {
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.05) !important;
    }
    
    .plan-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #198754);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .plan-card:hover::before {
        opacity: 1;
    }
    
    .plan-item {
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .oferta-fechas {
        background: rgba(220, 53, 69, 0.05);
        padding: 4px 12px;
        border-radius: 20px;
        display: inline-block;
        font-size: 0.85rem;
    }