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

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: #3A0060;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            /* position: fixed; */
            /* top: 0; */
            /* width: 100%; */
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* z-index: 1000; */
            /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
        }

        /* .logo estilos eliminados, ahora gestionado por .btn */

        /* .logo:hover estilos eliminados */

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center; /* Asegura que los botones estén alineados verticalmente */
        }

        .nav-buttons .btn img {
            height: auto; /* Altura auto para mantener proporción */
            width: 216px; /* Ancho de 200px */
            vertical-align: middle;
            margin: 0;
        }

        .nav-buttons .btn i {
            font-size: 40px; /* Mantengo el tamaño del icono de WhatsApp */
            margin-right: 0.5rem;
        }

        .nav-buttons .btn:first-child {
            padding: 5px; /* Padding muy reducido para ajustar el recuadro */
            border-radius: 10px; /* Hago el recuadro más rectangular */
            max-height: 50px; /* Limitar la altura máxima del botón */
            overflow: hidden; /* Asegurar que el contenido no se desborde */
        }

        .btn {
            padding: 0.75rem 1.5rem; /* Restaurado a los valores originales del botón de WhatsApp */
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: flex; /* Usar flexbox para alinear el contenido */
            align-items: center; /* Centrar verticalmente el contenido */
            justify-content: center; /* Centrar horizontalmente el contenido */
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 0.9rem; /* Restaurado al valor original del botón de WhatsApp */
        }

        .btn-primary {
            background: linear-gradient(45deg, #ff006e, #8338ec);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 0, 110, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 0, 110, 0.4);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.6);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), 
                        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.2) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(131, 56, 236, 0.2) 0%, transparent 50%);
            padding: 0 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, #ff006e 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, #8338ec 1px, transparent 1px);
            background-size: 100px 100px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .hero h2 {
            font-size: clamp(1.2rem, 3vw, 1.8rem);
            font-weight: 400;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 800px;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero .btn {
            font-size: 1.1rem;
            padding: 1rem 2rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero .crypto-logo {
            height: 500px;
            margin-bottom: 2rem; /* Añade un poco de espacio debajo del logo si es necesario */
        }

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

        /* Sections */
        .section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            text-align: center;
            margin-bottom: 3rem;
            background: linear-gradient(45deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* About Section */
        .about-content {
            text-align: center;
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0.9;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .feature:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 0, 110, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            background: linear-gradient(45deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .feature h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        /* Events Section */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .event-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-5px);
            border-color: rgba(131, 56, 236, 0.4);
        }

        .event-image {
            height: 200px;
            background: linear-gradient(45deg, rgba(255, 0, 110, 0.3), rgba(131, 56, 236, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Community Section */
        .community-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .benefit {
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(131, 56, 236, 0.15));
        }

        .benefit h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        /* Social Section */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            text-decoration: none;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Partners Section */
        .partner-slot {
            height: 100px; /* Adjust height for better fit */
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .partner-slot:hover {
            border-color: rgba(255, 0, 110, 0.4);
            background: rgba(255, 255, 255, 0.08);
        }

        .partners-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 4rem;
            margin-top: 2rem;
            background-color: rgba(0, 0, 0, 0.4); /* Fondo oscuro para la sección de logos */
            padding: 2rem;
            border-radius: 20px;
        }

        .communities-column, .partners-column {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            text-align: center;
        }

        .communities-column h2, .partners-column h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
            background: linear-gradient(45deg, #ff006e, #8338ec);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .communities-grid, .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.3);
            padding: 3rem 2rem 2rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ff006e;
        }

        .footer-social {
            margin-bottom: 2rem;
        }

        .footer-text {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .footer-social .social-link i {
            font-size: 1.5rem;
            margin: 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }

            .nav-buttons {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .crypto-logo {
                width: 150px;
                height: 100px;
            }

            .header .logo img {
                height: 100px; /* Ajuste para el logo 'cultura.png' en móvil */
            }

            .section {
                padding: 4rem 1rem;
            }

            .social-links {
                flex-direction: column;
                align-items: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }
