/* Estilos Generales */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    font-family: 'work Sans';
    margin: 0;
    padding: 0;
 }
html{
    scroll-behavior: smooth;
}
 /*Menú*/
.contenedor-header{
    background: #FFB86A ;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}
.contenedor-header header{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.contenedor-header header .logo a{
    font-family: 'righteous';
    font-size: 36px;
    color: #f5eef8;
    text-decoration: none;
}
.contenedor-header header ul{
    display: flex;
    list-style: none;
}
.contenedor-header header nav ul li a{
    text-align: none;
    color: #fff;
    margin: 0 15px;
    padding: 2px;
    transition: .5s;
    text-decoration: none;
}
.contenedor-header header nav ul li a:hover{
    color: #7a85c5;
}
.nav-responsive{
    background-color: #f5b7b1;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.inicio{
    background: 
    url(img/fondo3.jpeg);
    background-size: cover;
    height: 100vh;
    color: #f5eef8;
    display: flex;
    align-items: center;
}
.inicio .contenido-banner{
    padding: 50px;
    background-color: #070808;
    max-width: 550px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}
.inicio .contenido-banner img{
    margin-top: 40px;
    border: 5px solid #FFB86A;
    display: block;
    width: 80%;
    margin: auto;
}
.inicio .contenido-banner h1{
    margin-top: 40px;
    font-size: 42px;
    font-family: 'Righteous';
}
.inicio .contenido-banner h2{
    font-size: 15px;
    font-weight: normal;
}
.inicio .contenido-banner .redes a{
    color: #f5eef8;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #f5eef8 ;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 40px 5px;
    font-size: 20px;
    transition: .3s;
}
.inicio .contenido-banner .redes a:hover{
    background-color: #FFB86A;
}

footer {
    background-color: #FFB86A; /* Naranjita */
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

/* ===== RESPONSIVE para pantallas menores a 768px ===== */
@media screen and (max-width: 768px) {
    .contenedor-header header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contenedor-header header nav {
        display: none;
        width: 100%;
    }

    .contenedor-header header nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .contenedor-header header nav ul li {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .nav-responsive {
        display: block;
        margin-top: 10px;
    }

    .inicio {
        height: auto;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .inicio .contenido-banner {
        width: 90%;
        padding: 20px;
    }

    .inicio .contenido-banner img {
        width: 100%;
    }

    .inicio .contenido-banner h3 {
        font-size: 16px;
    }

    .inicio .contenido-banner .redes {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    footer p {
        font-size: 13px;
        padding: 10px 15px;
    }
}

.btn-volver {
    display: inline-block;
    background-color: #FFB86A;
    color: white;
    padding: 10px 20px;
    margin: 20px auto;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-volver:hover {
    background-color: #e39645;
}
