* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "new-zen", sans-serif;
    font-weight: 800;
    font-style: bold;
}
:root {
    --bg:          #F4F9FF;
    --nav-bg:      #023059;
    --primary:     #023059;
    --accent:      #5D93C4;
    --light-blue:  #D1EAFF;
    --pale:        #EEF6FF;
    --gray:        #6688AA;
    --white:       #FFFFFF;
    --shadow:      rgba(2, 48, 89, 0.12);
}


body {
    font-family: 'Zen', sans-serif;
    background-color: #D1EAFF;
    color: #023059;
    line-height: 1.6;
    overflow-x: hidden;
    
}

/* Cabeza */
.cabeza {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #D1EAFF;
}   

.logo-img {
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}


.app {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #D1EAFF;
}

.icono-app {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 auto 1.5rem auto;
    border: 2px solid #023059;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D1EAFF;
}

.app-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #D1EAFF;

}

.titulo-app {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #023059;
}

.descripcion-app {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    color: #023059;
}


.descarga{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
    background-color: #D1EAFF;
}

.boton{
    padding: 0.6rem 1.8rem;
    background-color: #023059;
    color: #D1EAFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.boton:hover {
    background-color: #011a33;
}


.video {
    text-align: center;
    width: 100%;
    margin: 3rem 0;
    padding: 2rem 1rem;
    background-color: #FFFFFF;
}

.video-gif {
    width: 60%;
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-gif video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-texto {
    flex: 1;
    padding: 1rem 0;
}

.video-texto h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #023059;
}

.video-texto p {
    color: #023059;
    opacity: 0.95;
    line-height: 1.8;
}


.informacion {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    align-items: flex-start;
    background-color: #FFFFFF;
    border-radius: 15px;
}
.informacion2 {
    display: flex;
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    align-items: flex-start;

}
.imagen-informacion{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
}

.large-img {
    width: 194px;
    height: 360px;
    border-radius: 15px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.texto-informacion {
    flex: 1;
    padding: 1rem 0;
    display: flex;          
    flex-direction: column; 
    align-items: center;   
}

.texto-informacion h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #023059;
    text-align: left;
    
}

.texto-informacion p {
    color: #023059;
    opacity: 0.95;
    line-height: 1.4;
    text-align: left;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #D1EAFF;
    color: rgba(2, 48, 89, 0.6);
    font-size: 0.9rem;
}

.creadores {
    text-align: center;
    width: 100%;
    margin: 3rem 0;
    padding: 3rem 1rem;
    background-color: #FFFFFF;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #023059;
}

.equipo {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.member {
    text-align: center;
    transition: transform 0.3s ease; 
    cursor: pointer;
}
.member:hover {
    transform: scale(1.1) translateY(-10px);
}

.member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.5rem;
    transition: box-shadow 0.3s ease;
}
.member:hover img {
    box-shadow: 0 10px 20px rgba(2, 48, 89, 0.2);
}

.member p {
    font-size: 1rem;
    color: #023059;
}


.trailer {
    width: 100%;
    margin: 3rem 0;
    padding: 2rem 1rem;
    text-align: center;
    background-color: #D1EAFF;
}

.trailer h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #023059;
}

.video-trailer {
    display: flex;
    justify-content: center;
}

.video-trailer video {
    max-width: 45%;
    height: auto;
    border-radius: 15px;
}
.contacto {
    text-align: center;
    width: 100%;
    margin: 2.5rem auto;
    padding: 1.8rem 1.4rem;
    background-color: #FFFFFF;
    border-radius: 15px;
    max-width: 620px;
}

.contacto h3 {
    font-size: 1.9rem;
    margin-bottom: 1.6rem;
    color: #023059;
}

.contacto form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    width: 100%;
    text-align: left;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid #6688AA;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #F4F9FF;
    color: #023059;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.contacto .boton {
    margin-top: 1rem;
    padding: 0.9rem 2.2rem;
    background-color: #023059;
    color: #D1EAFF;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.contacto .boton:hover {
    background-color: #011a33;
    transform: scale(1.05);
}

.contacto-social {
    text-align: center;
}

.contacto-social h3 {
    font-size: 2rem;
    margin-bottom: 1.8rem;
    color: #023059;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
}

.social-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    min-width: 280px;
    padding: 1rem 1.5rem;
    background-color: #023059;
    color: #D1EAFF;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.social-icon {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
    border-radius: 10px;
    object-fit: cover;
    background-color: #F4F9FF;
    padding: 4px;
}

.instagram:hover { background-color:#D1EAFF; color: #023059; }
.twitter:hover { background-color:#D1EAFF; color: #023059; }
.facebook:hover { background-color:#D1EAFF; color: #023059; }
.youtube:hover {background-color:#D1EAFF; color: #023059; }
.barra-navegacion {
    background-color: var(--nav-bg);
    padding: 0.7rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Esta es la "caja blanca" para el logo */
.nav-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    padding: 6px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-icono-app {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.nav-logo-texto {
    height: 22px;
    width: auto;
}

.enlaces-nav {
    display: flex;
    gap: 2rem;
}

.enlaces-nav a {
    color: #D1EAFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.enlaces-nav a:hover,
.enlaces-nav a.activo {
    color: var(--white);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
}
.boton-imagen-descarga .img-descarga {
    width: 140px;
    height: auto;
    transition: filter 0.2s;
}
.boton-imagen-descarga:hover .img-descarga {
    content: url('img/descargaHover.png'); /* Cambia la imagen al hacer hover */
    filter: brightness(1.1) drop-shadow(0 2px 8px #5D93C4);
}
.boton-link {

    background-color: #023059;
    color: #D1EAFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 140px;
}
.boton-link:hover {
    background-color: #011a33;
}
/* Ajuste para que el scroll no tape el título al saltar */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */



/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */

/* Tabletas (Pantallas menores a 992px) */
@media (max-width: 992px) {
    .informacion, .informacion2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }

    .informacion2 {
        flex-direction: column-reverse;
    }

    .texto-informacion h3, .texto-informacion p {
        text-align: center;
    }
}

/* Móviles (Pantallas menores a 768px) */
@media (max-width: 768px) {
    /* Navegación más compacta */
    .nav-container {
        flex-direction: column;
        padding: 0.5rem;
    }

    .enlaces-nav {
        gap: 0.8rem;
        margin-top: 0.5rem;
    }

    /* Reducción de tamaños generales */
    .logo-img { max-width: 220px; }
    .video-gif { width: 100%; }
    .video-trailer video { max-width: 95%; }

    /* SECCIÓN CONTACTO Y FORMULARIO (Más pequeños) */
    .contacto {
        margin: 1rem auto;
        padding: 1.2rem;
        max-width: 90%; /* Se ajusta al ancho de la pantalla */
    }

    .contacto h3 {
        font-size: 1.4rem; /* Título más pequeño */
        margin-bottom: 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .contacto .boton {
        width: 100%; /* Botón de enviar a ancho completo */
        padding: 0.8rem;
    }

    /* REDES SOCIALES (Ajustadas) */
    .contacto-social h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .social-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
    }

    .social-column {
        width: 100%;
        gap: 0.6rem;
    }

    .social-btn {
        min-width: 0 !important; /* Eliminamos el ancho mínimo de 280px */
        width: 100%;            /* Se ajusta al contenedor */
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        justify-content: center; /* Centra el contenido del botón */
    }

    .social-icon {
        width: 24px; /* Iconos un poco más pequeños */
        height: 24px;
    }

    /* Botones de descarga */
    .descarga {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem;
    }

    .social-btn {
    min-width: 0 !important;
    width: 100%;
    max-width: 280px; /* Limitamos el ancho para que no sean gigantes en tablet */
    margin: 0 auto;  /* Los centramos en la pantalla */
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    
    /* ALINEACIÓN DE ICONOS */
    display: flex;
    justify-content: flex-start; /* Alinea el contenido al inicio del botón */
    align-items: center;
    gap: 1rem; /* Espacio constante entre icono y texto */
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0; /* Evita que el icono se deforme si el texto es largo */
    margin-right: 0; /* Quitamos el margen antiguo para usar el gap */
}

.social-column {
    width: 100%;
    align-items: center; /* Asegura que la columna centre los botones */
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
}

/* Ajuste para móviles muy pequeños (iPhone SE, etc.) */
@media (max-width: 380px) {
    .enlaces-nav a {
        font-size: 0.75rem;
    }
    
    .large-img {
        width: 130px;
    }
}