/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#F7F3EE;
    color:#18352D;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* =========================
   HEADER
========================= */

.header{

    background:#FFFFFF;

    height:90px;

    position:sticky;

    top:0;

    z-index:1000;

    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.header .container{

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.header-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;
}

/* LOGO */

.logo h2{

    color:#0F4D3A;

    font-size:30px;

    font-weight:700;

    line-height:1;
}

.logo span{

    display:block;

    margin-top:4px;

    font-size:11px;

    letter-spacing:2px;

    color:#C89B3C;
}

.logo img{

    height:60px;
}

/* MENU */

.menu ul{

    display:flex;

    gap:35px;
}

.menu a{

    font-size:16px;

    font-weight:500;

    color:#18352D;

    transition:.3s;
}

.menu a:hover,
.menu a.active{

    color:#C89B3C;
}

/* ICONES */

.header-icons{

    display:flex;

    gap:20px;

    font-size:20px;

    color:#0F4D3A;
}
/* MENU MOBILE */

.menu-toggle{

    display:none;

    background:none;

    border:none;

    font-size:26px;

    color:#0F4D3A;

    cursor:pointer;
}
/* =========================
   BOTÕES
========================= */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    background:#C89B3C;

    color:#FFF;

    border:none;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(200,155,60,.25);
}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    border:2px solid #0F4D3A;

    border-radius:50px;

    color:#0F4D3A;

    font-weight:600;

    transition:.3s;
}

.btn-outline:hover{

    background:#0F4D3A;

    color:#FFF;
}

/* =========================
   TITULOS
========================= */

.section-title{

    text-align:left;
    margin-bottom:60px;
}

.section-title h2{

    font-family:'Playfair Display', serif;

    font-size:52px;

    color:#0F4D3A;

    margin-bottom:10px;
}

.section-title p{

    color:#666;

    max-width:700px;

    margin:0 auto;
}

/* =========================
   BANNER INTERNO
========================= */

.banner-interno{

    background:#F7F3EE;

    padding:70px 0;

    text-align:center;

    border-bottom:1px solid #E8E1D8;
}

.banner-interno h1{

    font-family:'Playfair Display', serif;

    font-size:56px;

    color:#0F4D3A;

    margin-bottom:15px;
}

.banner-interno p{

    max-width:700px;

    margin:0 auto;

    color:#666;
}

.subtitulo{

    display:block;

    color:#C89B3C;

    font-size:12px;

    font-weight:600;

    letter-spacing:3px;

    margin-bottom:15px;
}

/* =========================
   CARD GLOBAL
========================= */

.card{

    background:#FFF;

    border-radius:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* =========================
   FOOTER
========================= */

.footer{

    background:#0B2E24;

    color:#FFF;

    padding:80px 0;
}

.footer-content{

    text-align:center;
}

.footer h2{

    color:#C89B3C;

    margin-bottom:15px;
}

.footer p{

    opacity:.9;
}

/* =========================
   RESPONSIVO
========================= */

@media(max-width:768px){

    .container{

        width:95%;
    }

    .header{

        height:auto;
    }

    .header-content{

        position:relative;

        padding:15px 0;
    }

    .menu-toggle{

        display:block;

        position:absolute;

        right:0;

        top:25px;
    }

    .header-icons{

        display:none;
    }

    .menu{

        display:none;

        width:100%;

        margin-top:20px;
    }

    .menu.active{

        display:block;
    }

    .menu ul{

        flex-direction:column;

        gap:0;
    }

    .menu li{

        border-top:1px solid #EAEAEA;
    }

    .menu a{

        display:block;

        padding:15px;

        text-align:center;
    }

    .section-title h2{

        font-size:38px;
    }

    .banner-interno{

        padding:50px 0;
    }

    .banner-interno h1{

        font-size:38px;
    }

}
.footer{

    background:#0B2E24;

    color:#FFF;

    padding:80px 0 30px;
}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    margin-bottom:40px;
}

.footer-col h2{

    font-family:'Playfair Display', serif;

    font-size:42px;

    color:#C89B3C;

    margin-bottom:5px;
}

.footer-col span{

    display:block;

    letter-spacing:3px;

    font-size:12px;

    margin-bottom:20px;
}

.footer-col h3{

    color:#C89B3C;

    margin-bottom:20px;
}

.footer-col p{

    color:rgba(255,255,255,.75);

    line-height:1.8;

    margin-bottom:10px;
}

.footer-col ul li{

    margin-bottom:12px;
}

.footer-col ul a{

    color:rgba(255,255,255,.75);

    transition:.3s;
}

.footer-col ul a:hover{

    color:#C89B3C;
}

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;
}

.footer-social a{

    width:40px;

    height:40px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.footer-social a:hover{

    background:#C89B3C;
}

.footer-copy{

    border-top:1px solid rgba(255,255,255,.1);

    padding-top:25px;

    text-align:center;

    color:rgba(255,255,255,.6);

    font-size:14px;
}
.auth-page{
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}

.auth-card{
    width:100%;
    max-width:450px;
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
}

.form-group input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

.auth-card button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    cursor:pointer;
}