/*==================================================
                    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    min-height:100%;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f8f2e8;
    color:#333;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    overflow-x:hidden;
}


/*==================================================
                    HEADER
==================================================*/

header{

    position:relative;

    width:100%;

    height:160px;

    background:#2b1a12;

    border-bottom:3px solid #b8956a;

}


/*==================================================
                    LOGO PC
==================================================*/

.logo-img{

    position:absolute;

    left:50px;

    top:50%;

    transform:translateY(-50%);

    width:110px;

    height:110px;

    object-fit:contain;

}


/*==================================================
                    TEXTO CENTRAL
==================================================*/

.header-text{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    white-space:nowrap;

}

header h1{

    color:#e8c39e;

    font-size:32px;

    font-weight:normal;

    letter-spacing:3px;

}

.slogan{

    color:#b8956a;

    font-size:15px;

    font-style:italic;

    margin-top:6px;

}


/*==================================================
                    HAMBURGUESA
==================================================*/

#menu-toggle{

    display:none;

}

.hamburger{

    display:none;

}


/*==================================================
                    NAVEGACIÓN PC
==================================================*/

nav{

    width:100%;

    background:#3D1D11;

}

nav ul{

    list-style:none;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

nav li{

    margin:0;

}

nav a{

    display:block;

    padding:18px 35px;

    color:#d9c9b8;

    text-decoration:none;

    transition:.3s;

}

nav a:hover{

    background:#5d3823;

    color:#fff;

}


/*==================================================
                    FOOTER
==================================================*/

footer{

    margin-top:auto;

    background:#2b1a12;

    border-top:3px solid #b8956a;

    padding:35px 20px;

}

.footer-grid{

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:40px;

}

.col h3{

    color:#b8956a;

    margin-bottom:10px;

    border-bottom:1px solid #4a3020;

    padding-bottom:6px;

}

.col p{

    color:#d9c9b8;

    line-height:1.7;

}

.copy{

    margin-top:30px;

    text-align:center;

    color:#9d8d7f;

    font-size:.9rem;

}


/*==================================================
                    TABLET
==================================================*/

@media(max-width:900px){

    .logo-img{

        left:25px;

        width:95px;

        height:95px;

    }

    header h1{

        font-size:28px;

    }

}


/*==================================================
                    CELULAR
==================================================*/

@media(max-width:768px){

    /* HEADER */

    header{

        height:260px;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        padding:30px 20px;

    }


    /* LOGO CENTRADO */

    .logo-img{

        position:static;

        transform:none;

        width:95px;

        height:95px;

        margin-bottom:10px;

    }


    /* TEXTO */

    .header-text{

        position:static;

        transform:none;

        white-space:normal;

        text-align:center;

    }

    header h1{

        font-size:23px;

        letter-spacing:2px;

    }

    .slogan{

        font-size:13px;

        margin-top:5px;

    }


    /*==================================================
                    BOTÓN HAMBURGUESA
    ==================================================*/

    .hamburger{

        display:block;

        position:absolute;

        top:15px;

        right:15px;

        width:45px;

        height:45px;

        line-height:43px;

        text-align:center;

        background:#3D1D11;

        border:1px solid #b8956a;

        border-radius:6px;

        color:#e8c39e;

        font-size:25px;

        cursor:pointer;

        z-index:100;

    }


    /*==================================================
                    MENÚ CERRADO
    ==================================================*/

    nav{

        display:none;

    }


    /*==================================================
                    MENÚ ABIERTO
    ==================================================*/

    #menu-toggle:checked ~ nav{

        display:block;

    }

    nav ul{

        display:flex;

        flex-direction:column;

        width:100%;

    }

    nav li{

        width:100%;

    }

    nav a{

        width:100%;

        padding:16px;

        text-align:center;

        border-top:1px solid rgba(255,255,255,.1);

    }


    /*==================================================
                    FOOTER
    ==================================================*/

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

}


/*==================================================
                    CELULARES PEQUEÑOS
==================================================*/

@media(max-width:480px){

    header{

        height:240px;

    }

    .logo-img{

        width:80px;

        height:80px;

    }

    header h1{

        font-size:20px;

        letter-spacing:1px;

    }

    .slogan{

        font-size:12px;

    }

    .hamburger{

        width:42px;

        height:42px;

        line-height:40px;

        top:12px;

        right:12px;

        font-size:23px;

    }

}