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

        :root {
            --azul-oscuro: #173651;
            --rojo: #bb292a;
            --blanco: #ffffff;
            --gris-oscuro: #333333;
            --gris-claro: #f5f5f5;
        }

        body {
            font-family: 'Catamaran', sans-serif;
            color: var(--gris-oscuro);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Partículas de fondo */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        /* Header y Navegación */
        .header {
            background: var(--blanco);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }

        .top-bar {
            background: var(--azul-oscuro);
            color: var(--blanco);
            padding: 8px 0;
            font-size: 14px;
        }

        .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: var(--blanco);
            text-decoration: none;
            margin: 0 10px;
            transition: opacity 0.3s;
        }

        .top-bar-left a:hover, .top-bar-right a:hover {
            opacity: 0.8;
        }

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

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

        .logo img {
            height: 100px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: var(--azul-oscuro);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: color 0.3s;
            padding: 10px 0;
            display: block;
        }

        .nav-menu a:hover {
            color: var(--rojo);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: var(--blanco);
            min-width: 250px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
            border-radius: 8px;
            top: 100%;
            left: 0;
            padding: 10px 0;
            animation: fadeIn 0.3s;
        }

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

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

        .dropdown-content a {
            padding: 12px 20px;
            display: block;
            font-size: 15px;
        }

        .dropdown-content a:hover {
            background: var(--gris-claro);
        }

        .btn-dona {
            background: var(--rojo);
            color: var(--blanco) !important;
            padding: 12px 30px !important;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(187, 41, 42, 0.3);
        }

        .btn-dona:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(187, 41, 42, 0.4);
        }

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

        /* Hero Section */
        .hero {
            margin-top: 120px;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            color: var(--azul-oscuro);
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 25px;
            animation: slideInLeft 1s ease-out;
        }

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

        .hero-text p {
            font-size: 20px;
            color: var(--gris-oscuro);
            margin-bottom: 35px;
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: slideInLeft 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: var(--rojo);
            color: var(--blanco);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(187, 41, 42, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(187, 41, 42, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--azul-oscuro);
            padding: 16px 40px;
            border: 2px solid var(--azul-oscuro);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--azul-oscuro);
            color: var(--blanco);
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out;
        }

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

        .hero-image-placeholder {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--azul-oscuro) 0%, var(--rojo) 100%);
            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);
        }

        .hero-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

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

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--azul-oscuro);
            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;
        }

        /* Desafío Section */
        .desafio-section {
            background: var(--blanco);
            border-radius: 20px;
            padding: 80px 60px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 100px;
        }

        .desafio-section h2 {
            font-size: 38px;
            color: var(--azul-oscuro);
            margin-bottom: 30px;
        }

        .desafio-section p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

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

        .programa-card {
            background: var(--blanco);
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .programa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--rojo);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .programa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .programa-card:hover::before {
            transform: scaleX(1);
        }

        .programa-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--azul-oscuro), var(--rojo));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            font-size: 32px;
            margin-bottom: 25px;
        }

        .programa-card h3 {
            font-size: 22px;
            color: var(--rojo);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .programa-card p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

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

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

        /* Impacto Section */
        .impacto-section {
            background: var(--azul-oscuro);
            color: var(--blanco);
            padding: 100px 20px;
            margin: 100px 0;
            position: relative;
        }

        .impacto-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 1440 320"><path fill="%23bb292a" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .impacto-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

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

        .impacto-section > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 18px;
        }

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

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

        .stat-number {
            font-size: 56px;
            font-weight: 800;
            color: var(--rojo);
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 18px;
            color: var(--blanco);
            font-weight: 700;
        }

        /* 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: var(--azul-oscuro);
            color: var(--blanco);
            padding: 80px 20px 30px;
        }

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

        .footer-section h3 {
            color: var(--rojo);
            font-size: 20px;
            margin-bottom: 20px;
            font-weight: 700;
        }

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

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: var(--blanco);
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
        }

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

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

        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: var(--rojo);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-legal {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

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

        .footer-legal a:hover {
            color: var(--rojo);
        }

        /* 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 25px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-accept {
            background: var(--rojo);
            color: var(--blanco);
        }

        .btn-decline {
            background: var(--gris-claro);
            color: var(--gris-oscuro);
        }

        /* 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: 40px 30px;
            }

            .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 Section */
.mision-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mision-vision-card {
    background: var(--blanco);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.mision-vision-icon {
    width: 80px;
    height: 80px;
    background: var(--rojo);
    color: var(--blanco);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.mision-vision-card h3 {
    font-size: 28px;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--blanco);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: center;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--gris-oscuro);
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: var(--rojo);
    font-weight: 700;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: var(--gris-oscuro);
}

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

.news-card {
    background: var(--blanco);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 14px;
    color: var(--rojo);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 20px;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
}

.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;
    }
}

/* 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(--rojo);
    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-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.fundador-card {
    background: var(--blanco);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    display: flex;
    gap: 30px;
    align-items: center;
}

.fundador-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.fundador-content h3 {
    font-size: 24px;
    color: var(--rojo);
    margin-bottom: 15px;
}

.fundador-content p {
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .fundador-card {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   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);
    }
}