/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#1f1f1f;
    background:#ffffff;
    line-height:1.6;
}

/* VARIÁVEIS */

:root{

    --primary:#d96a3a;
    --primary-glow:#f0874d;

    --dark-bg:#1d1816;

    --background:#ffffff;

    --card:#ffffff;

    --secondary:#f6f6f6;

    --border:#e7e7e7;

    --text-muted:#6d6d6d;

    --gradient-primary:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-glow)
    );

    --gradient-hero:
    radial-gradient(
        ellipse at bottom right,
        #8b3f1d 0%,
        #1d1816 65%
    );

    --shadow-glow:
    0 20px 60px rgba(217,106,58,.35);

}

/* CONTAINER */

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

/* HERO */

.hero{

    background:var(--gradient-hero);

    color:white;

    padding:120px 0;

}

.hero-tag{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:700;

}

.hero h1{

    font-size:4rem;

    line-height:1.05;

    max-width:800px;

    margin-top:25px;

}

.hero h1 span{

    color:var(--primary);

}

.hero-description{

    margin-top:25px;

    max-width:600px;

    color:rgba(255,255,255,.75);

    font-size:1.15rem;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-top:40px;

}

/* BOTÕES */

.btn-primary{

    background:var(--gradient-primary);

    color:white;

    text-decoration:none;

    padding:16px 28px;

    border-radius:10px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    box-shadow:var(--shadow-glow);

    transition:.3s;

}

.btn-primary:hover{

    transform:translateY(-2px);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.2);

    background:rgba(255,255,255,.05);

    color:white;

    text-decoration:none;

    padding:16px 28px;

    border-radius:10px;

    display:inline-flex;

    gap:10px;

    backdrop-filter:blur(12px);

}

/* SEÇÕES */

section{

    padding:100px 0;

}

.section-header{

    text-align:center;

    max-width:800px;

    margin:auto;

}

.section-header h2{

    font-size:3rem;

}

.section-header h2 span{

    color:var(--primary);

}

.section-header p{

    margin-top:15px;

    color:var(--text-muted);

}

/* SERVIÇOS */

.services-grid{

    margin-top:60px;

    display:grid;

    gap:25px;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

}

.service-card{

    background:white;

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    transition:.3s;

}

.service-card:hover{

    transform:translateY(-5px);

}

.service-icon{

    width:60px;

    height:60px;

    background:#fff2eb;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:14px;

    color:var(--primary);

}

.service-card h3{

    margin-top:20px;

}

.service-card p{

    margin-top:10px;

    color:var(--text-muted);

}

/* INFRAÇÕES */

.infractions{

    background:var(--secondary);

}

.badge{

    display:inline-block;

    background:#fff2eb;

    color:var(--primary);

    padding:8px 16px;

    border-radius:999px;

    font-size:.9rem;

    font-weight:600;

}

.infractions-grid{

    margin-top:60px;

    display:grid;

    gap:25px;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

}

.infraction-card{

    background:white;

    border-radius:20px;

    padding:30px;

    border:1px solid var(--border);

}

.card-top{

    display:flex;

    justify-content:space-between;

}

.featured{

    background:#fff2eb;

    color:var(--primary);

    padding:5px 10px;

    border-radius:999px;

    font-size:.8rem;

}

.infraction-card h3{

    margin-top:15px;

    margin-bottom:20px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    padding:10px 0;

    border-bottom:1px solid #eee;

}

.cta-box{

    margin-top:60px;

    background:white;

    border-radius:24px;

    padding:50px;

    text-align:center;

    border:1px solid var(--border);

}

/* COMO FUNCIONA */

.steps-grid{

    margin-top:60px;

    display:grid;

    gap:25px;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

}

.step-card{

    position:relative;

    text-align:center;

    background:white;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 30px;

}

.step-number{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--gradient-primary);

    color:white;

    padding:8px 16px;

    border-radius:999px;

    font-weight:700;

}

.step-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-top:20px;

    border-radius:50%;

    background:#fff2eb;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

}

/* ABOUT */

.about{

    background:var(--gradient-hero);

    color:white;

}

.about p{

    color:rgba(255,255,255,.7);

}

.stats-grid{

    margin-top:50px;

    display:grid;

    gap:20px;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

}

.stat-card{

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:30px;

}

.stat-card h3{

    color:var(--primary);

    font-size:2.3rem;

}

/* DEPOIMENTOS */

.testimonial-grid{

    margin-top:60px;

    display:grid;

    gap:25px;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

}

.testimonial-card{

    background:white;

    border:1px solid var(--border);

    border-radius:18px;

    padding:25px;

}

.testimonial-header{

    display:flex;

    align-items:center;

    gap:12px;

}

.avatar{

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--gradient-primary);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.stars{

    margin-top:15px;

    color:#f5a623;

}

/* FAQ */

.faq-section{

    background:var(--secondary);

}

.faq-container{

    max-width:900px;

}

.faq-item{

    margin-top:15px;

    border-radius:15px;

    overflow:hidden;

    border:1px solid var(--border);

    background:white;

}

.faq-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    padding:22px;

    font-size:1rem;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-answer{

    display:none;

    padding:0 22px 22px;

    color:var(--text-muted);

}

.faq-item.active .faq-answer{

    display:block;

}

/* INSTAGRAM */

.instagram-cta{

    background:var(--gradient-hero);

    color:white;

    text-align:center;

}

.instagram-icon{

    width:60px;

    height:60px;

    margin-bottom:20px;

    color:var(--primary);

}

.instagram-cta p{

    max-width:600px;

    margin:20px auto;

    color:rgba(255,255,255,.75);

}

/* FOOTER */

.footer{

    background:white;

    border-top:1px solid var(--border);

    text-align:center;

    padding:50px 0;

}

.footer p{

    color:var(--text-muted);

    margin-top:10px;

}

/* WHATSAPP */

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:var(--gradient-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    box-shadow:var(--shadow-glow);

    z-index:999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.1);

}

/* LUCIDE */

svg{

    width:22px;

    height:22px;

}

/* RESPONSIVO */

@media(max-width:768px){

    .hero h1{

        font-size:2.7rem;

    }

    .section-header h2{

        font-size:2.2rem;

    }

    section{

        padding:70px 0;

    }

    .cta-box{

        padding:30px;

    }

}