/* =========================
   RESET
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */

body{

    font-family: Arial, Helvetica, sans-serif;

    /* IMAGEN DE FONDO */
    background-image: url("Imágenes/Fondo general.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;

    color: #4b3a33;

    padding: 30px;
}

/* =========================
   LOGO
========================= */

header{

    position: absolute;

    top: 25px;
    left: 0;
    text-align: center;
    width: 100%;
    z-index: 1000;
}

.logo img{

    width: 180px;
}

/* =========================
   CONTENEDOR PRINCIPAL
========================= */

main{

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================
   CONTENIDO DENTRO DEL FONDO
========================= */

section{

    width: 85%;
    max-width: 950px;

    padding: 60px;

    /* EFECTO TRANSPARENTE */
    background-color: rgba(255,255,255,0.20);

    backdrop-filter: blur(6px);

    border-radius: 30px;

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow: 0 10px 35px rgba(0,0,0,0.15);

    text-align: center;
}

/* =========================
   TÍTULOS
========================= */

h1{

    font-size: 48px;

    margin-bottom: 35px;

    color: #5a3e36;
}

h2{

    font-size: 32px;

    margin-bottom: 25px;

    color: #5a3e36;
}

/* =========================
   PÁRRAFOS
========================= */

p{

    font-size: 20px;

    line-height: 1.9;

    margin-bottom: 25px;

    color: #4b3a33;
}

/* =========================
   LISTAS
========================= */

ul{

    list-style-position: inside;

    margin-top: 20px;
}

li{

    margin-bottom: 15px;

    font-size: 18px;
}

/* =========================
   BOTONES
========================= */

button{

    margin-top: 20px;

    background-color: #c59a84;

    color: white;

    border: none;

    padding: 14px 30px;

    border-radius: 12px;

    font-size: 17px;

    cursor: pointer;

    transition: 0.3s;
}

button:hover{

    background-color: #a97966;
}

/* =========================
   FOOTER
========================= */

footer{

    text-align: center;

    padding: 25px;

    color: #5a3e36;

    font-weight: bold;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    body{

        padding: 15px;
    }

    header{

        left: 20px;
    }

    .logo img{

        width: 130px;
    }

    section{

        width: 95%;

        padding: 35px;
    }

    h1{

        font-size: 34px;
    }

    p{

        font-size: 17px;
    }

}