*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background:#F9F6F0;
    color:#2C221E;
}

.container{
    max-width:1180px;
    margin:auto;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:42px;
}

.hero{
    display:flex;
    gap:56px;
    align-items:center;
}

.hero-image{
    flex:0.95;
}

.hero-image img{
    width:100%;
    max-width:440px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.hero-content{
    flex:1.05;
}

.logo{
    font-size:13px;
    letter-spacing:4px;
    color:#5A644E;
    margin-bottom:18px;
    text-transform:uppercase;
}

.eyebrow{
    display:inline-block;
    background:#EFECE6;
    color:#5A644E;
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:16px;
}

h1{
    font-size:38px;
    line-height:1.08;
    margin-bottom:18px;
    font-weight:700;
}

.subtitle{
    font-size:21px;
    color:#5A644E;
    margin-bottom:22px;
    font-style:italic;
}

.description{
    font-size:18px;
    line-height:1.65;
    margin-bottom:22px;
}

.benefits{
    list-style:none;
    margin-bottom:28px;
}

.benefits li{
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
    font-size:16px;
    line-height:1.45;
}

.benefits li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#5A644E;
    font-weight:bold;
}

.form-card{
    background:#EFECE6;
    padding:24px;
    border-radius:14px;
}

input{
    width:100%;
    padding:14px;
    border:1px solid #d9d4cc;
    border-radius:10px;
    margin-bottom:15px;
    font-size:16px;
    background:#fff;
}

.checkbox{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:20px;
    font-size:14px;
    line-height:1.35;
}

.checkbox input{
    width:auto;
    margin-top:3px;
}

button{
    width:100%;
    background:#5A644E;
    color:white;
    border:none;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:16px;
    font-weight:bold;
}

button:hover{
    opacity:.92;
}

.erro{
    color:#b00020;
    margin-bottom:15px;
    font-weight:bold;
}

@media(max-width:900px){

    .container{
        padding:28px 20px;
    }

    .hero{
        flex-direction:column;
        gap:32px;
        text-align:left;
    }

    .hero-image img{
        max-width:100%;
    }

    h1{
        font-size:36px;
    }

    .subtitle{
        font-size:19px;
    }

    .description{
        font-size:16px;
    }
}


.image-caption{
    text-align:center;
    margin-top:16px;
}

.image-caption strong{
    display:block;
    font-size:18px;
    color:#2C221E;
    margin-bottom:6px;
}

.image-caption span{
    color:#5A644E;
    font-size:14px;
}

.trust{
    margin-top:16px;
    text-align:center;
    font-size:13px;
    color:#5A644E;
}
