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

body{
    font-family:'Poppins',sans-serif;
    background:#FFF7FB;
    color:#222;
}

.top-brand{
    display: flex;
    background-image: url("img1.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding:10px;
    justify-content: center;
    text-align: center;
    background-position:center;
    border-bottom:1px solid #f71568;
    height: 130vh;
}

.brand-badge{
    display:inline-block;
    background:#ff4f8b;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;
    box-shadow:0 8px 20px rgba(255,79,139,.25);
}

.brand-content h1{
    font-size:3rem;
    color:#3f2530;
    margin-bottom:20px;
    line-height:1.2;
}

.brand-content h1 span{
    color:#ff4f8b;
}

.brand-content p{
    margin:auto;
    font-size:1.15rem;
    color:#6d5160;
    line-height:1.8;
}

.brand-highlights{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:40px;
    flex-direction: column;
    align-items: center;
}

.highlight{
    background:#fff;
    padding:15px 24px;
    border-radius:14px;
    font-weight:600;
    color:#ff4f8b;
    box-shadow:0 10px 25px rgba(255,105,160,.12);
    transition:.3s;
    width: 500px;
}

.highlight:hover{
    transform:translateY(-5px);
    background:#ff4f8b;
    color:#fff;
}

@media(max-width:768px){

    .top-brand{
        padding:55px 20px;
    }

    .brand-content h1{
        font-size:2.1rem;
    }

    .brand-content p{
        font-size:1rem;
    }

    .brand-highlights{
        flex-direction:column;
        align-items:center;
    }

    .highlight{
        width:100%;
        max-width:320px;
    }

}

.top-brand h1,
.top-brand p{
    color: #f0f4f5;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
}

.container{
    max-width:1200px;
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tag{
    display:inline-block;
    background:#FFE2EF;
    color:#E91E63;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:18px;
    color:#666;
    margin-bottom:35px;
    max-width:520px;
}

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.btn{
    text-decoration:none;
    padding:16px 28px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.primary{
    background:#E91E63;
    color:#fff;
}

.primary:hover{
    background:#cf1455;
}

.secondary{
    border:2px solid #E91E63;
    color:#E91E63;
}

.secondary:hover{
    background:#FFE2EF;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.feature{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    color:#555;
}

.hero-right{
    position:relative;
}

.hero-right img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.card{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    width:280px;
}

.card h3{
    margin-bottom:15px;
}

.item{
    display:flex;
    justify-content:space-between;
    margin:10px 0;
    color:#555;
}

.status{
    margin-top:15px;
    color:#13a554;
    font-weight:600;
}

@media(max-width:900px){

.container{
grid-template-columns:1fr;
text-align:center;
}

.hero p{
margin:auto auto 30px;
}

.buttons{
justify-content:center;
}

.features{
grid-template-columns:1fr;
}

.card{
position:relative;
left:0;
bottom:-20px;
width:100%;
}

}

.promocoes{
    padding:100px 8%;
    background:#fff;
}

.titulo{
    text-align:center;
    margin-bottom:60px;
}

.badge{
    display:inline-block;
    background:#FFE2EF;
    color:#E91E63;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:20px;
}

.titulo h2{
    font-size:42px;
    margin-bottom:15px;
}

.titulo p{
    color:#666;
    font-size:18px;
}

.cards{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
}

.card-promo{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
}

.card-promo:hover{
    transform:translateY(-10px);
}

.card-promo img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.desconto{
    position:absolute;
    top:20px;
    right:20px;
    background:#E91E63;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    font-weight:700;
}

.conteudo{
    padding:30px;
}

.conteudo h3{
    margin-bottom:12px;
    font-size:28px;
}

.conteudo p{
    color:#666;
    margin-bottom:25px;
}

.preco{
    margin-bottom:25px;
}

.antigo{
    text-decoration:line-through;
    color:#999;
    font-size:20px;
    margin-right:10px;
}

.novo{
    color:#E91E63;
    font-size:38px;
    font-weight:700;
}

.conteudo a{
    display:block;
    text-align:center;
    background:#E91E63;
    color:#fff;
    text-decoration:none;
    padding:16px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.conteudo a:hover{
    background:#cf1455;
}

.destaque{
    border:3px solid #E91E63;
}

.como-funciona{
    padding:100px 8%;
    background:#FFF7FB;
}

.passos{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:60px;
}

.passo{
    background:#fff;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.passo:hover{
    transform:translateY(-8px);
}

.numero{
    position:absolute;
    top:20px;
    left:20px;
    width:35px;
    height:35px;
    border-radius:50%;
    background:#E91E63;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.icone{
    font-size:55px;
    margin-bottom:20px;
}

.passo h3{
    font-size:24px;
    margin-bottom:15px;
}

.passo p{
    color:#666;
    line-height:1.7;
}

.depoimentos{
    padding:100px 8%;
    background:#ffffff;
}

.depoimentos-grid{
    max-width:1200px;
    margin:60px auto 0;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.depoimento{
    background:#FFF7FB;
    border-radius:24px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.3s;
}

.depoimento:hover{
    transform:translateY(-8px);
}

.estrelas{
    font-size:22px;
    margin-bottom:20px;
}

.depoimento p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
    font-style:italic;
}

.cliente{
    display:flex;
    align-items:center;
    gap:15px;
}

.cliente img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.cliente h4{
    margin-bottom:4px;
    font-size:18px;
}

.cliente span{
    color:#888;
    font-size:14px;
}

.agendamento{
    padding:100px 8%;
    background:#FFF7FB;
    display:flex;
    justify-content:center;
}

.container-agendamento{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
}

.agendamento-info h2{
    font-size:42px;
    margin:20px 0;
}

.agendamento-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.vantagens{
    display:flex;
    flex-direction:column;
    gap:18px;
    font-size:17px;
}

.formulario{
    background:#fff;
    padding:20px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.formulario iframe{
    border:none;
    border-radius:16px;
}

@media(max-width:900px){

.container-agendamento{
    grid-template-columns:1fr;
}

.agendamento-info{
    text-align:center;
}

}

.footer{
    background:#1F1F1F;
    color:#fff;
    padding:70px 8% 25px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer h2{
    color:#fff;
    margin-bottom:20px;
}

.footer h3{
    margin-bottom:20px;
    color:#fff;
}

.footer p{
    color:#CFCFCF;
    line-height:1.8;
}

.footer a{
    display:block;
    color:#CFCFCF;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer a:hover{
    color:#E91E63;
}

.redes{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.redes a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#2E2E2E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.3s;
}

.redes a:hover{
    background:#E91E63;
    color:#fff;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid #333;
    text-align:center;
    color:#A5A5A5;
    font-size:14px;
}

@media(max-width:900px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.redes{
    justify-content:center;
}

}

html{
    scroll-behavior: smooth;
}

@media (max-width: 992px){

    h1{
        font-size:42px;
    }

    h2{
        font-size:34px;
    }

    .hero{
        padding:70px 6%;
    }

    .container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .hero-left p{
        margin:auto;
    }

    .buttons{
        justify-content:center;
    }

    .features{
        grid-template-columns:1fr 1fr;
        justify-items:center;
    }

    .hero-right{
        max-width:550px;
        margin:auto;
    }

    .card{
        position:relative;
        left:0;
        bottom:-20px;
        width:100%;
    }

    .cards{
        grid-template-columns:1fr;
    }

    .passos{
        grid-template-columns:1fr;
    }

    .depoimentos-grid{
        grid-template-columns:1fr;
    }

    .container-agendamento{
        grid-template-columns:1fr;
    }

    .agendamento-info{
        text-align:center;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

}


@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding:70px 5%;
    }

    h1{
        font-size:34px;
        line-height:1.2;
    }

    h2{
        font-size:28px;
    }

    p{
        font-size:16px;
    }

    .tag,
    .badge{
        font-size:14px;
    }

    .buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .feature{
        justify-content:center;
    }

    .hero-right img{
        border-radius:20px;
    }

    .card{
        padding:20px;
    }

    .titulo{
        margin-bottom:40px;
    }

    .titulo p{
        font-size:16px;
    }

    .card-promo img{
        height:220px;
    }

    .conteudo{
        padding:25px;
    }

    .conteudo h3{
        font-size:24px;
    }

    .novo{
        font-size:32px;
    }

    .passo{
        padding:35px 25px;
    }

    .depoimento{
        padding:25px;
    }

    .formulario{
        padding:10px;
    }

    .formulario iframe{
        height:900px;
    }

    .footer{
        text-align:center;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .redes{
        justify-content:center;
    }

}


@media (max-width:480px){

    h1{
        font-size:28px;
    }

    h2{
        font-size:24px;
    }

    .hero{
        min-height:auto;
        padding-top:120px;
    }

    .buttons{
        gap:12px;
    }

    .btn{
        padding:14px;
        font-size:15px;
    }

    .card{
        padding:18px;
    }

    .item{
        font-size:14px;
    }

    .desconto{
        padding:8px 14px;
        font-size:14px;
    }

    .novo{
        font-size:28px;
    }

    .cliente{
        flex-direction:column;
        text-align:center;
    }

    .cliente img{
        width:70px;
        height:70px;
    }

    .vantagens{
        font-size:15px;
    }

    .formulario iframe{
        height:1000px;
    }

}

.btn-whatsapp {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .btn-whatsapp {
        width: 100%;
        max-width: 340px;
        padding: 15px 20px;
        font-size: 1rem;
    }
}