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

        :root {
            /* Colores del sistema */
            --color-primary:    #173651;
            --color-accent:     #bb292a;
            --color-surface:    #ffffff;
            --color-text:       #2d2d2d;
            --color-text-muted: #6B6B6B;
            --color-bg-light:   #f0ede7;
            --color-sand:       #F5F0E8;

            /* Aliases heredados — compatibilidad mientras se migra */
            --azul-oscuro: var(--color-primary);
            --rojo:        var(--color-accent);
            --blanco:      var(--color-surface);
            --gris-oscuro: var(--color-text);
            --gris-claro:  var(--color-bg-light);

            /* Tipografía */
            --font-display: 'Libre Baskerville', Georgia, serif;
            --font-body:    'Catamaran', sans-serif;
            --font-mono:    'Space Mono', monospace;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text);
            background-color: var(--color-sand);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* ——— Header y Navegación ——— */
        .header {
            background: var(--color-surface);
            box-shadow: 0 1px 0 rgba(0,0,0,0.08);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 2px 20px rgba(0,0,0,0.12);
        }

        /* Top Bar — compacta, solo info esencial */
        .top-bar {
            background: var(--color-primary);
            color: var(--color-surface);
            padding: 6px 0;
            font-size: 13px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar-left a, .top-bar-right a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            margin: 0 8px;
            font-size: 13px;
            transition: color 0.2s;
        }

        .top-bar-left a:hover, .top-bar-right a:hover {
            color: var(--color-surface);
        }

        /* Nav principal */
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 64px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.2s;
            padding: 8px 0;
            display: block;
        }

        .nav-menu a:hover {
            color: var(--color-primary);
            opacity: 0.7;
        }

        /* Dropdown */
        .dropdown { position: relative; }

        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--color-surface);
            min-width: 240px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-radius: 6px;
            border-top: 3px solid var(--color-accent);
            top: calc(100% + 8px);
            left: 0;
            padding: 8px 0;
            animation: fadeIn 0.2s ease;
        }

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

        .dropdown:hover .dropdown-content { display: block; }

        .dropdown-content a {
            padding: 10px 18px;
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--color-text);
        }

        .dropdown-content a:hover {
            background: var(--color-sand);
            color: var(--color-primary);
        }

        .btn-dona {
            background: var(--rojo);
            color: var(--blanco) !important;
            padding: 10px 22px !important;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            transition: all 0.25s;
            box-shadow: 0 2px 8px rgba(187, 41, 42, 0.25);
        }

        .btn-dona:hover {
            background: #9e2121;
            box-shadow: 0 4px 14px rgba(187, 41, 42, 0.35);
            transform: translateY(-1px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--azul-oscuro);
            cursor: pointer;
        }

        /* Hero Section */
        /* ——— Hero ——— */
        .hero {
            margin-top: 103px; /* top-bar ~32px + nav ~71px */
            min-height: 88vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(23,54,81,0.92) 0%, rgba(23,54,81,0.82) 50%, rgba(15,38,60,0.88) 100%),
                url('images/imagenprincipal.jpg') center / cover no-repeat;
            z-index: 0;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 80px 40px;
            text-align: center;
        }

        .hero-eyebrow {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.18em;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 700;
            font-style: italic;
            color: var(--color-surface);
            line-height: 1.22;
            margin-bottom: 24px;
        }

        .hero-title em {
            font-style: normal;
            color: rgba(255,255,255,0.75);
        }

        .hero-desc {
            font-size: 18px;
            color: rgba(255,255,255,0.82);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--color-accent);
            color: var(--color-surface);
            padding: 14px 36px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.03em;
            transition: all 0.25s;
            display: inline-block;
            box-shadow: 0 2px 10px rgba(187, 41, 42, 0.25);
        }

        .btn-primary:hover {
            background: #9e2121;
            box-shadow: 0 4px 18px rgba(187, 41, 42, 0.35);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--color-primary);
            padding: 14px 36px;
            border: 2px solid var(--color-primary);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.25s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--color-primary);
            color: var(--color-surface);
        }

        .btn-secondary-white {
            background: transparent;
            color: var(--color-surface);
            padding: 14px 36px;
            border: 2px solid rgba(255,255,255,0.7);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.25s;
            display: inline-block;
        }

        .btn-secondary-white:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--color-surface);
        }

        /* Secciones */
        .section {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.2vw, 2.6rem);
            font-weight: 700;
            font-style: italic;
            color: var(--color-primary);
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--gris-oscuro);
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        /* ——— Sección El Desafío — full-bleed con fondo arena profundo ——— */
        .desafio-section {
            background: #EAE5DC;
            padding: 90px 0;
        }

        .desafio-inner {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .desafio-section h2 {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3vw, 2.4rem);
            font-style: italic;
            color: var(--color-primary);
            margin-bottom: 32px;
            line-height: 1.3;
        }

        .desafio-section p {
            font-size: 17px;
            line-height: 1.85;
            color: var(--color-text);
            margin-bottom: 20px;
            max-width: 700px;
        }

        /* ——— Programas Cards ——— */
        .programas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 56px;
        }

        .programa-card {
            background: var(--color-surface);
            border-radius: 8px;
            padding: 36px 28px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: background 0.2s, box-shadow 0.2s;
            border-left: 3px solid transparent;
        }

        .programa-card:hover {
            background: var(--color-sand);
            box-shadow: 0 4px 20px rgba(0,0,0,0.09);
            border-left-color: var(--color-accent);
        }

        /* Nombre del programa como identificador tipográfico */
        .programa-code {
            display: block;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--color-primary);
            opacity: 0.45;
            margin-bottom: 14px;
        }

        .programa-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .programa-card p {
            font-size: 15px;
            line-height: 1.65;
            color: var(--color-text-muted);
            margin-bottom: 20px;
        }

        .programa-card a {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s, color 0.2s;
        }

        .programa-card a:hover {
            gap: 12px;
        }

        /* ——— Impacto Section ——— */
        .impacto-section {
            background: var(--color-primary);
            color: var(--color-surface);
            padding: 90px 20px;
            margin: 80px 0;
        }

        .impacto-content {
            max-width: 1100px;
            margin: 0 auto;
        }

        .impacto-section h2 {
            color: var(--color-surface);
            text-align: center;
            margin-bottom: 16px;
        }

        .impacto-section p {
            text-align: center;
            max-width: 660px;
            margin: 0 auto 56px;
            font-size: 17px;
            color: rgba(255,255,255,0.75);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-top: 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5vw, 4rem);
            font-weight: 700;
            color: var(--color-surface);
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-family: var(--font-mono);
            font-size: 12px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.55);
            font-weight: 400;
        }

        /* CTA Final Section */
        .cta-final {
            background: linear-gradient(135deg, var(--gris-claro) 0%, var(--blanco) 100%);
            padding: 100px 20px;
            text-align: center;
        }

        .cta-final h2 {
            font-size: 42px;
            color: var(--azul-oscuro);
            margin-bottom: 25px;
        }

        .cta-final p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ——— Footer ——— */
        .footer {
            background: #0f2637;
            color: rgba(255,255,255,0.72);
            padding: 72px 20px 28px;
        }

        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: rgba(255,255,255,0.5);
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 10px;
            font-size: 14px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: var(--color-surface);
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.08);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.72);
            transition: background 0.2s, color 0.2s;
        }

        .social-icons a:hover {
            background: rgba(255,255,255,0.18);
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
            font-size: 13px;
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 12px;
            flex-wrap: wrap;
            font-size: 12px;
        }

        .footer-legal a {
            color: var(--blanco);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: rgba(255,255,255,0.9);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--blanco);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            padding: 20px;
            z-index: 1001;
            display: none;
        }

        .cookie-banner.show {
            display: block;
            animation: slideUp 0.5s ease-out;
        }

        @keyframes slideUp {
            from { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .cookie-content p {
            flex: 1;
            font-size: 14px;
        }

        .cookie-buttons {
            display: flex;
            gap: 10px;
        }

        .cookie-buttons button {
            padding: 10px 22px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.25s;
        }

        .btn-accept {
            background: var(--color-accent);
            color: var(--color-surface);
        }

        .btn-accept:hover { background: #9e2121; }

        .btn-decline {
            background: var(--color-bg-light);
            color: var(--color-text);
            border: 1px solid rgba(0,0,0,0.12);
        }

        .btn-decline:hover { background: #ddd9d2; }

        /* Responsive */
        @media (max-width: 968px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--blanco);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            }

            .nav-menu.active {
                display: flex;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                padding-left: 20px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-text h1 {
                font-size: 38px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .section-title {
                font-size: 32px;
            }

            .desafio-section {
                padding: 60px 0;
            }
            .desafio-inner {
                padding: 0 24px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Animaciones de scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Video Section */
.video-section {
    background: var(--gris-claro);
    padding-top: 80px;
    padding-bottom: 80px;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    height: 500px;
    background: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    font-size: 18px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}

.video-placeholder .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.video-placeholder:hover .video-overlay {
    background: rgba(0,0,0,0.6);
}


.video-placeholder .play-button {
    background: none;
    border: none;
    color: var(--blanco);
    font-size: 80px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s;
}

.video-placeholder .play-button:hover {
    transform: scale(1.1);
}

.video-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder.playing .video-overlay {
    display: none;
}

/* ——— Misión y Visión ——— */
.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 56px;
}

.mision-vision-card {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: left;
}

.mv-eyebrow {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 14px;
}

.mision-vision-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 14px;
}

/* ——— Testimonials ——— */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-top: 3px solid var(--color-primary);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}

.testimonial-author span {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* ——— News Section ——— */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.news-card {
    background: var(--color-surface);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.news-content {
    padding: 28px;
}

.news-date {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.news-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 8px;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-read-more {
    color: var(--azul-oscuro);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.news-read-more:hover {
    gap: 12px;
}

@media (max-width: 968px) {
    .mision-vision-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }
    /* Footer 4-col → 2-col en tablet */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    /* Hero inner padding reducido */
    .hero-inner {
        padding: 60px 24px;
    }
    /* Desafío */
    .desafio-inner {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    /* Footer → columna única en mobile */
    .footer-content {
        grid-template-columns: 1fr;
    }
    /* Stats apilados en mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* Hero title tamaño reducido */
    .hero-title {
        font-size: 1.7rem;
    }
    /* Impacto padding */
    .impacto-section {
        padding: 60px 20px;
    }
    /* Programas en 1 col */
    .programas-grid {
        grid-template-columns: 1fr;
    }
    /* Testimonios en 1 col */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    /* footer-legal wrap en mobile */
    .footer-legal {
        gap: 12px;
    }
}

/* Legal Content */
.legal-content {
    background: var(--blanco);
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--azul-oscuro);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p, .legal-content ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 30px;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    color: var(--gris-oscuro);
    margin-bottom: 40px;
    font-style: italic;
}

/* Fundadores Section */
/* ——— Fundadores ——— */
.fundadores-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 56px;
}

.fundador-card {
    background: var(--color-surface);
    border-radius: 8px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.fundador-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fundador-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.fundador-content .bio-preview {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

.fundador-content .bio-full {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
    display: none;
    margin-top: 8px;
}

.fundador-content .bio-full.expanded {
    display: block;
}

.bio-toggle {
    background: none;
    border: none;
    padding: 0;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-primary);
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.2s;
}

.bio-toggle:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .fundador-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .fundador-image img {
        width: 100px;
        height: 100px;
    }
}
/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    font-family: 'Catamaran', sans-serif;
    font-weight: 700;
}

.whatsapp-float.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.whatsapp-text {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Animación de pulso */
.whatsapp-float.pulse {
    animation: whatsapp-pulse 1s ease-in-out;
}

@keyframes whatsapp-pulse {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 12px 40px rgba(37, 211, 102, 0.8);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        gap: 10px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }

    .whatsapp-text {
        font-size: 14px;
    }
}

/* Versión compacta para pantallas muy pequeñas */
@media (max-width: 480px) {
    .whatsapp-float {
        padding: 12px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        width: 36px;
        height: 36px;
        font-size: 28px;
        background: transparent;
    }
}

/* Animación de entrada alternativa (opcional) */
@keyframes whatsapp-bounce-in {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.5) rotate(-45deg);
    }
    50% {
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}