* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Tomorrow,  arial;
}

body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Fondo con blur */
/*body::before {
    content: "";
    position: fixed; /* se queda fijo al hacer scroll 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('Fondo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px); /* ajusta el valor según lo que quieras 
    z-index: -1; /* queda detrás del contenido 
}*/

/* Fondo ondulado */
.wave-bg {
    position: absolute;
    width: 100%;
    z-index: -1;
}
.wave-bg.top {
    top: 0;
}
.wave-bg.bottom {
    bottom: 0px;
}

/* Waves fluidas 
.wave-bg svg {
    display: block;
    width: 100%;
    height: auto;
}*/


/* --- Olas adaptables --- */
.wave-bg svg {
    width: 100%;
    height: auto;
}

/* Contenido principal */
/*.landing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}*/

/* --- Layout base adaptable --- */
.landing {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    gap: 30px;
}

/*.content {
    max-width: 500px;
}*/

.content {
    flex: 1 1 400px;
    max-width: 500px;
}

.content p {
    font-size: 20px;
    line-height: 1.5;
    /*font-weight: bold;*/
    margin-bottom: 30px;
    /*color: #54468b;*/
}

/*.logo img {
    max-width: 300px;;
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 10px;
}*/

/* Ajuste de video y logo */
.logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: #54468b !important;
    color: white; 
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: opacity 0.3s;
    font-size: 18px;
}

.btn i{
        margin-right: 8px; /* ajusta el valor a lo que necesites */
        vertical-align: middle; /* opcional, para alinear mejor con el texto */
}

.btn:hover {
    opacity: 0.85;
    color: white;
}

/*.video{
    margin-top: 50px;
    margin-right:  100px;
    max-width: 500px;
    width: 100%;
}*/

.video {
    /*flex: 1 1 300px;*/
    /*max-width: 500px!important;*/
    width: 640px!important;
    height: 360px!important;
    margin: 0;
}

/*.video-marco{
    border: 3px solid #000;
    border-radius: 15px; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}*/

.video-marco {
    width: 100%;
    /*max-width: 500px;*/
    height: auto;
    border: 2px solid #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
}

.redes{
    position: relative; /* o fixed si quieres que quede fijo en pantalla */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px; /* separación entre íconos */
    margin: 20px 0; /* espacio arriba y abajo */
    z-index: 10; /* que esté por encima del fondo ondulado */
}

/*.redes i {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: 50px;
    color: white;
    letter-spacing: 10px;
}*/

.redes i{
    font-size: 50px;
    color: black;
    cursor: pointer;
    transition: opacity 0.3s;
}

.redes i:hover{
    opacity: 0.85;
    color: rgb(222, 222, 222);
}

.ginato {
    width: 45px;
    height: 40px;
    color: black;
    transition: opacity 0.3s;
}

.ginato:hover{
    opacity: 0.85;
    filter: brightness(0) invert(1);
}

/*footer{
    /*background: linear-gradient(90deg, #54468b, #7263ad);
}*/

footer p{
    font-size: 18px;
    color: black;
}

/* ----- */

/* --- Móviles y tablets --- */
@media (max-width: 992px) {
    /* Apilar texto y video */
    body {
       background: #C8BCE3;
       background: radial-gradient(circle, rgba(200, 188, 227, 1) 0%, rgba(114, 99, 173, 1) 100%);
    }

    .landing {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

    .content p {
        font-size: 20px;
    }

    .logo img {
        max-width: 200px;
        margin: 0 auto;
    }

    .btn {
        font-size: 16px;
        padding: 12px 20px;
    }

    .video {
        margin-top: 20px;
        width: 300px!important;
        height: 360px!important;
    }

    .video-marco {
        width: 100%;
        /*height: auto;*/
        border: 2px solid #000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
    }

    /* Íconos siempre centrados y con espacio */
    .redes {
        gap: 20px;
        flex-wrap: wrap;
    }

    .redes i {
        font-size: 36px;
        color: black;
    }

    /* Olas ocultas para evitar que rompan */
    .wave-bg {
        display: none;
    }

    footer p {
    font-size: 14px;
    color: black;
    }
}

/* --- Celulares muy pequeños --- */
@media (max-width: 480px) {
    body {
       background: #C8BCE3;
       background: radial-gradient(circle, rgba(200, 188, 227, 1) 0%, rgba(114, 99, 173, 1) 100%);
    }

    .content p {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 18px;
    }

    .logo img {
        max-width: 150px;
    }

    footer p {
    font-size: 12px;
    color: black;
    }
}