/* estilo.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
    color: white;
    overflow-x: hidden; /* Evita la barra de desplazamiento horizontal */
}

/* Estilos generales */
.container {
    width: 80%;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Estilos para el menú */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.menu {
    display: flex;
    justify-content: space-between; /* Espacio entre menú y iconos sociales */
    align-items: center;
    padding: 0 20px; /* Espacio a los lados del menú */
}

.menu-toggle {
    display: none; /* Oculto en pantallas grandes */
    font-size: 20px;
    color: white;
    cursor: pointer;
}

.menu-links {
    display: flex;
    list-style: none; /* Quitar viñetas de la lista */
    margin: 0;
    padding: 0;
}

.menu-links li {
    margin-left: 20px;
}

.menu-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: #ffcc00;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: white;
    font-size: 35px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.3) rotate(10deg);
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .menu-links {
        display: none; /* Ocultar menú en pantallas pequeñas */
        flex-direction: column; /* Menu vertical */
        position: absolute;
        top: 60px; /* Ajustar según la altura del header */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        text-align: center;
    }

    .menu-links.active {
        display: flex; /* Mostrar menú al hacer clic en el botón */
    }

    .menu-links li {
        margin: 10px 0; /* Espacio entre items del menu vertical */
    }

    .menu-toggle {
        display: block; /* Mostrar botón menú hamburguesa */
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Hero ocupa toda la altura de la pantalla */
    padding-top: 80px; /* Espacio para el header fijo */
    text-align: center; /* Centrar el texto en el hero */
}

.hero-content {
    width: 80%; /* Ancho del contenido del hero */
    max-width: 600px;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #12c2e9;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.address-box {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.address-box input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    width: 85%;
    text-align: center;
    cursor: pointer;
}

.address-box button {
    background-color: #ffcc00;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.address-box button:hover {
    background: #ff9900;
}

.copied-message {
    display: none;
    color: #ffcc00;
    margin-top: 10px;
    font-size: 1.2rem;
}


/* Estilos para la sección "Sobre Wakuwaku" */
.about {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-content {
    display: flex;
    flex-direction: column; /* Diseño vertical en pantallas pequeñas */
    align-items: center;
}


.text-container {
    width: 80%;
    max-width: 600px;
    text-align: justify;
}



/* About Section */
.about {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo oscuro para la sección About */
}

.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.video-container {
    width: 80%;
    max-width: 45%; /* Ancho máximo del video igual al del texto */
    border-radius: 10px;
    overflow: hidden;
}

/* Media query para diseño horizontal en pantallas medianas y grandes */
@media (min-width: 768px) {
    .about-content {
        flex-direction: row; /* Diseño horizontal */
        align-items: flex-start; /* Alineación en la parte superior */
    }

    .text-container {
        margin-bottom: 0;
        margin-right: 20px; /* Espacio entre el texto y el video */
    }

    .video-container {
        max-width: 50%; /* Ancho máximo del video ajustado */
    }
}


/* Estilos para la sección "Arte" */
.arte {
    padding: 50px 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery {
    display: flex;
    flex-wrap: wrap; /* Permite que las imágenes se ajusten a varias líneas */
    justify-content: center;
    gap: 20px; /* Espacio entre las imágenes */
}

.image {
    width: 200px; /* Tamaño inicial de las imágenes */
    height: 200px;
    overflow: hidden; /* Recorta las imágenes para que encajen en el contenedor */
    border-radius: 10px; /* Bordes redondeados */
    cursor: pointer; /* Cambia el cursor al pasar por encima */
    transition: transform 0.3s ease; /* Transición suave al hacer hover */
}

.image img {
    width: 80%;
    height: 80%;
    object-fit: cover; /* Ajusta la imagen al contenedor sin distorsionarla */
}

.image:hover {
    transform: scale(1.1); /* Efecto de escala al pasar por encima */
}


/* Estilos para el modal */
.modal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative; /* Para posicionar el botón de cerrar */
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 50px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
/* Estilos para el gráfico circular y la tabla */
.distribution-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.chart-container {
    width: 200px;
    height: 200px;
    position: relative;
}

.chart-legend {
    margin-left: 20px;
}

.chart-legend table {
    border-collapse: collapse;
}

.chart-legend th,
.chart-legend td {
    padding: 8px;
    border: 1px solid white;
    text-align: left;
}
   /* Estilos para el banner */
.banner-container {
    width: 100%; /* Ocupa todo el ancho */
    position: fixed; /* Posición fija */
    bottom: 0; /* Al final de la página */
    background-color: black; /* Fondo negro */
    overflow: hidden; /* Oculta el texto que se sale del contenedor */
}

.banner {
    width: 100%; /* Ocupa todo el ancho */
    white-space: nowrap; /* Evita que el texto se corte */
    animation: marquee 25s linear infinite; /* Animación */
}

.banner span {
    display: inline-block;
    padding: 10px;
    color: yellow; /* Texto amarillo */
}

@keyframes marquee {
    0% {
        transform: translateX(100%); /* Inicio: fuera de la pantalla a la derecha */
    }
    100% {
        transform: translateX(-100%); /* Fin: fuera de la pantalla a la izquierda */
    }
}



/* Estilos para los iconos sociales en la parte inferior */
.social-icons-bottom {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    gap: 20px; /* Espacio entre los iconos */
    margin-top: 20px; /* Espacio entre el contenido y los iconos */
}

.social-icons-bottom a {
    color: white; /* Color de los iconos */
    font-size: 30px; /* Tamaño de los iconos */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons-bottom a:hover {
    transform: scale(1.2); /* Efecto de escala al pasar por encima */
}

.social-icons-bottom a img {
    width: 30px; /* Tamaño de los iconos de gmgn.ia y dexscreener.com */
    height: 30px;
}
.circle {
    width: 70px;
    height: 50px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    border-radius: 50%;
    animation: move 90s infinite alternate ease-in-out;
}
@keyframes move {
    0% { transform: translate(0, 0); }
    25% { transform: translate(200px, 300px); }
    50% { transform: translate(-250px, 150px); }
    75% { transform: translate(300px, -200px); }
    100% { transform: translate(-200px, -100px); }
}