/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 159, 232, 0.1);
    box-shadow: 0 4px 20px rgba(74, 159, 232, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    font-weight: 800;
    font-size: 28px;
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(74, 159, 232, 0.3));
    transition: all 0.3s ease;
    animation: logoEntrance 0.8s ease-out;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(74, 159, 232, 0.4));
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A9FE8, #22C55E);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #4A9FE8;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: block;
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(74, 159, 232, 0.3);
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 159, 232, 0.4);
}

.menu-icon {
    font-size: 24px;
    color: white;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 16px;
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 14px 20px;
    border-radius: 12px;
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    background: rgba(74, 159, 232, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.1), rgba(34, 197, 94, 0.1));
    transform: translateX(8px);
    color: #4A9FE8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    color: white;
    box-shadow: 0 8px 24px rgba(74, 159, 232, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74, 159, 232, 0.5);
}

.btn-hero {
    background: white;
    color: #4A9FE8;
    padding: 18px 36px;
    font-size: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.btn-outline-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 18px 36px;
    font-size: 18px;
}

.btn-outline-hero:hover {
    background: white;
    color: #4A9FE8;
    border-color: white;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    margin-right: 8px;
    font-size: 20px;
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 20px;
}

.btn:hover .btn-arrow {
    transform: translateX(6px);
}

.mobile-btn {
    width: 100%;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.95), rgba(34, 197, 94, 0.9)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 80px 20px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.badge p {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.badge-link {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    transition: all 0.3s ease;
    text-decoration-thickness: 2px;
}

.badge-link:hover {
    color: #FCD34D;
    text-shadow: 0 0 20px rgba(252, 211, 77, 0.6);
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.text-accent {
    background: linear-gradient(135deg, #FCD34D, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-infonavit-red {
    color: #FCD34D;
    text-shadow: 0 4px 16px rgba(252, 211, 77, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 18px 24px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.check-icon {
    color: #FCD34D;
    font-size: 24px;
    filter: drop-shadow(0 2px 8px rgba(252, 211, 77, 0.6));
}

/* BENEFITS SECTION */
.benefits {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1e293b;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4A9FE8, #22C55E);
    border-radius: 2px;
}

.text-primary {
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 20px auto 0;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.05), rgba(34, 197, 94, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    border-color: rgba(74, 159, 232, 0.3);
    box-shadow: 0 20px 60px rgba(74, 159, 232, 0.15);
    transform: translateY(-8px);
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.1), rgba(34, 197, 94, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    box-shadow: 0 12px 32px rgba(74, 159, 232, 0.4);
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    position: relative;
    z-index: 1;
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* PROCESS SECTION */
.process {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #4A9FE8, #22C55E);
    transition: height 0.4s ease;
}

.process-card:hover::before {
    height: 100%;
}

.process-card:hover {
    border-color: rgba(74, 159, 232, 0.3);
    box-shadow: 0 16px 48px rgba(74, 159, 232, 0.12);
    transform: translateX(8px);
}

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
...
    box-shadow: 0 8px 24px rgba(74, 159, 232, 0.4);
    transition: all 0.4s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(74, 159, 232, 0.5);
}

.process-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.process-card:hover .process-title {
    color: #4A9FE8;
}

.process-description {
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
    font-weight: 500;
}

/* CONTACT SECTION */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.info-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 24px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.info-card:hover {
    border-color: rgba(74, 159, 232, 0.3);
    box-shadow: 0 20px 60px rgba(74, 159, 232, 0.15);
    transform: translateY(-8px);
}

.info-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(74, 159, 232, 0.1), rgba(34, 197, 94, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    transition: all 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    box-shadow: 0 12px 32px rgba(74, 159, 232, 0.4);
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.info-subtitle {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-detail {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 15px;
}

.info-link {
    text-decoration: none;
    color: #475569;
    display: block;
    transition: all 0.3s ease;
    font-weight: 600;
}

.info-link:hover {
    color: #4A9FE8;
    transform: scale(1.05);
}

.calendar-link {
    color: #4A9FE8;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    transition: all 0.3s ease;
}

.calendar-link:hover {
    color: #22C55E;
    text-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border: 2px solid rgba(74, 159, 232, 0.1);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(74, 159, 232, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A9FE8, #22C55E, #F97316);
}

.form-title {
...
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    font-size: 16px;
    text-align: center;
    color: #64748b;
    margin-bottom: 36px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 15px;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4A9FE8;
    box-shadow: 0 0 0 4px rgba(74, 159, 232, 0.1);
    transform: translateY(-2px);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A9FE8, #22C55E, #F97316, #EC4899);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #4A9FE8, #22C55E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-text {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-badges {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.footer-badges p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-link:hover {
    color: #4A9FE8;
    transform: translateX(8px);
}

.footer-address {
    color: #cbd5e1;
    line-height: 1.8;
    font-weight: 500;
}

.footer-address p {
    margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 2px solid rgba(74, 159, 232, 0.2);
    text-align: center;
    color: #94a3b8;
    font-weight: 600;
}

/* TOAST */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: white;
    border: 2px solid #10b981;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.toast-content p {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(30px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* RESPONSIVE */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 68px;
    }
    
    .section-title {
        font-size: 52px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 76px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
