:root {
    --primary-blue: #1e40af;
    --secondary-blue: #2563eb;
    --accent-green: #059669;
    --success-green: #047857;
    --warning-gold: #d97706;
    --light-gold: #f59e0b;
    --dark-navy: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --border-gray: #e2e8f0;
    --white: #ffffff;
    --text-dark: #334155;
    
    --primary-gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --success-gradient: linear-gradient(135deg, var(--accent-green) 0%, var(--success-green) 100%);
    --gold-gradient: linear-gradient(135deg, var(--light-gold) 0%, var(--warning-gold) 100%);
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-gray);
}

/* Loader con Logo Animado */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-green) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-logo-container {
    position: relative;
    width: 300px;
    height: 120px;
    margin-bottom: 2rem;
}

.loader-logo-svg {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: logoFadeIn 2s ease forwards 0.5s;
}

/* Animaciones sutiles del logo del cóndor */
.loader-logo-svg .cls-2 {
    animation: wingGlow 3s ease-in-out infinite 1s;
}

.loader-logo-svg .cls-4 {
    animation: wingShimmer 2.5s ease-in-out infinite 1.5s;
}

.loader-logo-svg .cls-5 {
    animation: bodyPulse 4s ease-in-out infinite 1s;
}

.loader-logo-svg .cls-3 {
    animation: sunGlow 3s ease-in-out infinite 2s;
}

.loader-logo-svg .cls-1 {
    animation: detailsFloat 2s ease-in-out infinite 2.5s;
}

@keyframes wingGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.2) saturate(1.3);
        transform: scale(1.02);
    }
}

@keyframes wingShimmer {
    0%, 100% { 
        filter: brightness(1) hue-rotate(0deg);
    }
    33% { 
        filter: brightness(1.1) hue-rotate(5deg);
    }
    66% { 
        filter: brightness(1.05) hue-rotate(-5deg);
    }
}

@keyframes bodyPulse {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        transform: translateY(0);
    }
    25% { 
        filter: brightness(1.1) saturate(1.1);
        transform: translateY(-1px);
    }
    50% { 
        filter: brightness(1.15) saturate(1.2);
        transform: translateY(-2px);
    }
    75% { 
        filter: brightness(1.1) saturate(1.1);
        transform: translateY(-1px);
    }
}

@keyframes sunGlow {
    0%, 100% { 
        filter: brightness(1) saturate(1);
        opacity: 1;
    }
    50% { 
        filter: brightness(1.3) saturate(1.4);
        opacity: 0.9;
    }
}

@keyframes detailsFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: translateY(-1px) scale(1.01);
        filter: brightness(1.1);
    }
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes flagWave {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px) rotate(-1deg); }
    50% { transform: translateX(2px) rotate(1deg); }
    75% { transform: translateX(-1px) rotate(-0.5deg); }
}

@keyframes planeMove {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(2deg); }
    50% { transform: translateY(3px) rotate(-1deg); }
    75% { transform: translateY(-2px) rotate(1deg); }
}

@keyframes textAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) saturate(1.2); }
}

.loader-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    animation: loaderTextFade 1s ease forwards 3s;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: loaderTextFade 1s ease forwards 3.5s;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    border-radius: 2px;
    animation: progressFill 2s ease-in-out forwards 3.5s;
}

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

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* NAVBAR TRANSPARENTE MEJORADO */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(30, 64, 175, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    z-index: 1001;
}

.logo img {
    height: 70px;
    transition: opacity 0.3s ease;
}

.logo .logo-white {
    display: block;
    opacity: 1;
}

.logo .logo-color {
    display: none;
    opacity: 0;
}

.navbar.scrolled .logo .logo-white {
    display: none;
    opacity: 0;
}

.navbar.scrolled .logo .logo-color {
    display: block;
    opacity: 1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links a:hover {
    color: var(--light-gold);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--light-gold);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-links a::after {
    background: var(--primary-blue);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Animación del icono del menú */
.mobile-menu-btn i {
    transition: all 0.3s ease;
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-green) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.4s ease;
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    text-align: center;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

/* Hero Section Inmersivo MEJORADO */
.hero {
    min-height: 110vh;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(37, 99, 235, 0.8) 50%, rgba(5, 150, 105, 0.7) 100%),
                url('/img/hero_bg.png') right center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    padding-top: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
    min-height: 100vh;
}

.hero-content {
    z-index: 3;
    animation: heroSlideIn 1.5s ease;
    padding-top: 2rem;
}

.hero-decorative {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Elementos Decorativos Flotantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-passport {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatPassport 4s ease-in-out infinite;
    z-index: 4;
}

.floating-passport i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.floating-plane {
    position: absolute;
    top: 25%;
    right: 25%;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    animation: flyPlane 6s ease-in-out infinite;
    z-index: 4;
}

.floating-stamp {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 70px;
    height: 70px;
    background: rgba(5, 150, 105, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    animation: bounceStamp 3s ease-in-out infinite;
    z-index: 4;
}

.floating-stamp i {
    font-size: 1.8rem;
    color: white;
}

.floating-document {
    position: absolute;
    top: 40%;
    right: 5%;
    width: 60px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: sway 5s ease-in-out infinite;
    z-index: 4;
}

.floating-document i {
    font-size: 1.5rem;
    color: var(--accent-green);
}

/* Animaciones de Elementos Flotantes */
@keyframes floatPassport {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes flyPlane {
    0%, 100% { transform: translateX(0px) translateY(0px) rotate(0deg); }
    25% { transform: translateX(10px) translateY(-15px) rotate(5deg); }
    50% { transform: translateX(20px) translateY(-10px) rotate(0deg); }
    75% { transform: translateX(10px) translateY(-5px) rotate(-5deg); }
}

@keyframes bounceStamp {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes sway {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    25% { transform: translateX(-5px) rotate(2deg); }
    50% { transform: translateX(5px) rotate(0deg); }
    75% { transform: translateX(-3px) rotate(-1deg); }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.9);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Estadísticas con Imágenes */
.stats {
    background: white;
    padding: 4rem 2rem;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    border: 1px solid var(--border-gray);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Secciones con Imágenes */
.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Servicios con Imágenes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--border-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 2rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--accent-green);
    font-size: 0.8rem;
}

/* About Section con Imagen */
.about-section {
    background: white;
    padding: 5rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.about-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.about-stat .label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Testimonios con Imágenes */
.testimonials {
    background: var(--light-gray);
    padding: 5rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-green);
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--accent-green);
    opacity: 0.3;
}

/* Proceso Vertical Rediseñado */
.process-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Timeline Vertical */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--light-gold) 0%, var(--warning-gold) 100%);
    border-radius: 2px;
    animation: timelineProgress 6s ease-in-out infinite;
}

@keyframes timelineProgress {
    0%, 20% { height: 0%; }
    80%, 100% { height: 100%; }
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.1);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
    overflow: hidden;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(30, 64, 175, 0.2);
    border-color: var(--accent-green);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--success-gradient);
}

.step-icon-container {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.15);
    border: 6px solid var(--light-gray);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.step-icon-container:hover {
    transform: scale(1.1);
    border-color: var(--accent-green);
}

.step-icon-bg {
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: iconShimmer 4s infinite;
}

@keyframes iconShimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.step-icon {
    font-size: 2.5rem;
    color: white;
    z-index: 1;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--success-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
    z-index: 3;
    border: 4px solid white;
}

.step-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.step-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 2px;
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.step-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.step-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-feature:hover {
    background: rgba(5, 150, 105, 0.1);
    transform: translateX(5px);
}

.step-feature i {
    width: 25px;
    height: 25px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.step-feature span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Elementos decorativos mejorados */
.process-decoration {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    border-radius: 50%;
    opacity: 0.6;
}

.decoration-1 {
    top: 10%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(5, 150, 105, 0.1));
    animation: float1 8s ease-in-out infinite;
}

.decoration-2 {
    top: 30%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(5, 150, 105, 0.1), rgba(245, 158, 11, 0.1));
    animation: float2 6s ease-in-out infinite;
}

.decoration-3 {
    bottom: 20%;
    left: 10%;
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.1), rgba(30, 64, 175, 0.1));
    animation: float3 10s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(40px, 0px) rotate(180deg); }
    75% { transform: translate(20px, 20px) rotate(270deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-15px, 15px) scale(1.1); }
    66% { transform: translate(15px, -10px) scale(0.9); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    20% { transform: translate(10px, -15px) rotate(72deg) scale(1.05); }
    40% { transform: translate(25px, 5px) rotate(144deg) scale(0.95); }
    60% { transform: translate(15px, 20px) rotate(216deg) scale(1.1); }
    80% { transform: translate(-5px, 10px) rotate(288deg) scale(0.9); }
}

/* CTA Final Mejorado */
.process-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.15);
    position: relative;
    overflow: hidden;
}

.process-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--success-gradient);
}

.process-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.process-cta-content {
    position: relative;
    z-index: 1;
}

.process-cta h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.process-cta p {
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.process-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.3rem 3rem;
    background: var(--success-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(5, 150, 105, 0.3);
    position: relative;
    overflow: hidden;
}

.process-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.process-cta-button:hover::before {
    left: 100%;
}

.process-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(5, 150, 105, 0.4);
}

.process-cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.2);
}

.process-cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Formulario de Contacto */
.contact-section {
    background: var(--primary-gradient);
    color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2084&q=80') center/cover;
    opacity: 0.1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Botones Flotantes */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.whatsapp-btn {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background: #20c55a;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    background: var(--primary-blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }

    .step-features {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        display: none;
    }
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para botones flotantes */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .floating-elements {
        display: none;
    }
}
@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero centrado en móviles */
    .hero {
        min-height: 110vh;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
        justify-items: center;
    }

    .hero-content {
        padding-top: 4rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-decorative {
        display: none;
    }

    /* Navbar mobile */
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        height: 50px;
    }

    /* Secciones responsive */
    .section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Stats responsive */
    .stats {
        padding: 3rem 1rem;
        margin-top: -20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Services responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    /* About responsive */
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    /* Process responsive */
    .process-section {
        padding: 4rem 1rem;
    }

    .process-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .process-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }

    .step-icon-container {
        width: 100px;
        height: 100px;
    }

    .step-icon-bg {
        width: 80px;
        height: 80px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -10px;
        right: -10px;
    }

    .step-content {
        padding: 2rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .step-features {
        grid-template-columns: 1fr;
    }

    .process-cta {
        padding: 3rem 2rem;
        margin-top: 3rem;
    }

    .process-cta h3 {
        font-size: 2rem;
    }

    .process-cta p {
        font-size: 1rem;
    }

    .process-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .process-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Testimonials responsive */
    .testimonials {
        padding: 4rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
        margin: 0 0.5rem;
    }

    /* Contact responsive */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .contact-info p {
        font-size: 1rem;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1rem;
    }

    .process-title {
        font-size: 2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .process-cta {
        padding: 2rem 1rem;
    }

    .process-cta h3 {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1.5rem;
    }
}