*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0f0f0f;
    color:#fff;
    overflow-x:hidden;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:120px 40px 40px 40px;
    background:
    linear-gradient(135deg,#0f0f0f,#4b2e20);
}

.hero-left{
    width:50%;
}

.hero-right{
    width:50%;
}

.tag{
    display:inline-block;
    background:#8f5a2d;
    padding:10px 18px;
    border-radius:30px;
    margin-bottom:25px;
    font-weight:bold;
}

h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
}

p{
    font-size:20px;
    line-height:1.7;
    color:#ddd;
    margin-bottom:30px;
}

.benefits div{
    margin-bottom:12px;
    color:#f0f0f0;
}

form{
    width:100%;
    max-width:420px;
    background:#fff;
    color:#111;
    padding:25px;
    border-radius:25px;
    box-shadow:0 20px 80px rgba(0,0,0,.35);
}

form h2{
    margin-bottom:20px;
}

input,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border-radius:12px;
    border:1px solid #ddd;
    font-size:16px;
}

textarea{
    height:100px;
    resize:none;
}

button{
    width:100%;
    border:none;
    background:#5b371c;
    color:#fff;
    padding:18px;
    border-radius:14px;
    cursor:pointer;
    font-weight:bold;
    font-size:16px;
}

button:hover{
    opacity:.9;
}

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#25D366;
    color:#fff;
    padding:14px 20px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
}

.btn-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    background:#25D366;
    color:#fff;
    padding:15px 22px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
}

@media(max-width:900px){

    .hero{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    h1{
        font-size:38px;
    }

}
.intro{
    font-size:20px;
    line-height:1.7;
    color:#ddd;
    margin-bottom:30px;
}

.vantagens{
    margin-top:20px;
}

.vantagens h3{
    margin-bottom:20px;
    color:#fff;
    font-size:24px;
}

.vantagens div{
    margin-bottom:14px;
    font-size:18px;
    color:#f3f3f3;
}

.info-section,
.advantages-section,
.cta-section{
    padding:90px 30px;
    background:#fff;
    color:#111;
}

.container{
    max-width:1200px;
    margin:auto;
}

.info-section h2,
.advantages-section h2,
.cta-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    max-width:700px;
    margin:auto auto 60px auto;
}

.section-subtitle-1{
    text-align:left;
    color:#E6C367;
    max-width:700px;
    margin:auto auto 60px auto;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#fafafa;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.number{
    font-size:32px;
    font-weight:bold;
    color:#8f5a2d;
    margin-bottom:15px;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.adv-item{
    text-align:center;
    padding:30px;
}

.adv-item span{
    font-size:42px;
    display:block;
    margin-bottom:15px;
}

.cta-section{
    background:#111;
    color:#fff;
    text-align:center;
}

.btn-cta{
    display:inline-block;
    margin-top:30px;
    background:#8f5a2d;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:40px;
    font-weight:bold;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 40px;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
}

.logo{
    height:40px;
    width:40px;
}


.footer{
    background:#0f0f0f;
    text-align:center;
    padding:30px 10px;
    color:#aaa;
}

.footer-logo{
    height:40px;
    width:40px;
    margin-bottom:20px;
    text-align:center;
}