*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#1f1f1f;
    background:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 20px;
}

h1,h2,h3,h4{
    font-family:'Cormorant Garamond',serif;
}

/* HEADER */

.header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ececec;
    position:sticky;
    top:0;
    z-index:999;
}

.nav{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:125px;
}

.menu{
    display:flex;
    gap:28px;
}

.menu a{
    color:#222;
    font-size:14px;
    font-weight:500;
    transition:.3s;
    position:relative;
}

.menu a:hover{
    color:#6b001b;
}

.menu a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    left:0;
    bottom:-6px;
    background:#6b001b;
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

.btn-whatsapp{
    background:#6b001b;
    color:#fff;
    padding:12px 18px;
    border-radius:10px;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.btn-whatsapp:hover{
    background:#500014;
    transform:translateY(-2px);
}

/* HERO */

.hero{
    padding:14px 0 18px;
    background:#fff;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:10px;
}

.hero-text{
    max-width:470px;
}

.hero-text span{
    color:#b08b4f;
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
}

.hero-text h1{
    font-size:30px;
    line-height:1.05;
    margin:12px 0 14px;
    font-weight:600;
    color:#161616;
}

.hero-text h1 strong{
    color:#6b001b;
}

.hero-text p{
    font-size:13px;
    line-height:1.6;
    color:#555;
    margin-bottom:18px;
    max-width:430px;
}

.hero-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#6b001b;
    color:#fff;
    padding:10px 16px;
    border-radius:9px;
    font-weight:600;
    font-size:13px;
    transition:.3s;
}

.btn-primary:hover{
    background:#500014;
}

.btn-secondary{
    border:1px solid #b08b4f;
    color:#b08b4f;
    padding:10px 16px;
    border-radius:9px;
    font-weight:600;
    font-size:13px;
    transition:.3s;
}

.btn-secondary:hover{
    background:#b08b4f;
    color:#fff;
}

.hero-image{
    display:flex;
    justify-content:flex-end;
}

.hero-image img{
    width:70%;
    border-radius:18px;
    object-fit:cover;
    box-shadow:0 10px 22px rgba(0,0,0,0.08);
}

/* =========================
   IRPF PREMIUM AJUSTADO
========================= */

.irpf{
    position:relative;
    overflow:hidden;

    padding:14px 0;

    color:#fff;

    background:
    linear-gradient(
        90deg,
        rgba(86,0,21,0.62),
        rgba(123,0,31,0.58)
    ),

    url('https://i.postimg.cc/3NkJ8w5c/Fundo.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

/* CONTEÚDO PRINCIPAL */

.irpf-content{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.1fr auto auto;
    align-items:center;
    gap:30px;
}

/* BADGE */

.badge{
    background:#c99a4d;
    padding:7px 14px;
    border-radius:7px;
    display:inline-block;
    font-size:12px;
    font-weight:600;
    margin-bottom:14px;
}

/* TEXTO */

.irpf-left h2{
    font-size:34px;
    line-height:1.08;
    margin-bottom:12px;
    max-width:520px;
}

.irpf-left h2 span{
    color:#f0c577;
    display:block;
}

.irpf-left p{
    line-height:1.6;
    margin-bottom:18px;
    color:#f5f5f5;
    font-size:14px;
    max-width:470px;
}

/* BOTÃO */

.btn-gold{
    background:#c99a4d;
    color:#fff;
    padding:12px 18px;
    border-radius:9px;
    font-weight:600;
    display:inline-block;
    transition:.3s;
    font-size:14px;
}

.btn-gold:hover{
    transform:translateY(-2px);
}

/* GRID DOS ÍCONES */

.irpf-icons{
    display:grid;
    grid-template-columns:repeat(3,78px);
    gap:12px;
    align-items:center;
}

/* ÍCONES */

.icon-card img{
    width:78px;

    transition:.3s;

    filter:
    drop-shadow(0 10px 18px rgba(0,0,0,0.18));
}

.icon-card img:hover{
    transform:translateY(-4px);
}

/* NOTEBOOK */

.irpf-notebook img{
    width:370px;

    filter:
    drop-shadow(0 16px 24px rgba(0,0,0,0.22));
}

/* SERVICES */

.services{
    padding:55px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    margin-bottom:8px;
    color:#1b1b1b;
}

.section-title p{
    color:#777;
    font-size:15px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.service-card{
    border:1px solid #ededed;
    padding:24px 20px;
    border-radius:18px;
    transition:.3s;
    background:#fff;
}

.service-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 24px rgba(0,0,0,0.06);
}

.service-card img{
    width:52px;
    margin-bottom:16px;
}

.service-card h3{
    font-size:22px;
    line-height:1.2;
    margin-bottom:14px;
}

.service-card p{
    line-height:1.6;
    color:#555;
    margin-bottom:14px;
    font-size:14px;
}

.service-card a{
    color:#b08b4f;
    font-weight:700;
    font-size:14px;
}

/* BENEFITS */

.benefits{
    padding:100px 0;
    background:#faf7f2;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

.benefit-item{
    text-align:center;
}

.benefit-item img{
    width:65px;
    margin:auto;
    margin-bottom:20px;
}

.benefit-item h3{
    font-size:28px;
    margin-bottom:10px;
}

.benefit-item p{
    color:#666;
    line-height:1.6;
}

/* CTA */

.cta{
    padding:0 0 80px;
    background:#fff;
}

.cta-box{
    background:#f8f3ed;

    border-radius:28px;

    display:grid;
    grid-template-columns:260px 1fr auto;

    align-items:center;

    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

/* IMAGEM */

.cta-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TEXTO */

.cta-content{
    padding:0 40px;
}

.cta-content h2{
    font-size:58px;
    color:#3b0b16;

    margin-bottom:12px;
}

.cta-content p{
    font-size:20px;
    line-height:1.7;
    color:#555;
}

/* BOTÃO */

.cta-button{
    padding-right:40px;
}

/* RESPONSIVO */

@media(max-width:991px){

    .cta-box{
        grid-template-columns:1fr;
        text-align:center;
    }

    .cta-content{
        padding:40px 25px 20px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-button{
        padding:0 0 40px;
    }

}

/* FOOTER */

.footer{
    background:#fff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    width:180px;
    margin-bottom:25px;
}

.footer p{
    line-height:1.8;
    color:#555;
}

.footer h4{
    font-size:22px;
    margin-bottom:20px;
    font-family:'Inter',sans-serif;
}

.footer ul li{
    margin-bottom:14px;
}

.footer ul li a{
    color:#333;
    transition:.3s;
}

.footer ul li a:hover{
    color:#6b001b;
}

.footer-bottom{
    margin-top:60px;
    background:#6b001b;
    color:#fff;
    text-align:center;
    padding:22px;
    font-size:14px;
}

/* RESPONSIVO */

@media(max-width:1100px){

    .hero-content,
    .irpf-content,
    .footer-grid,
    .cta{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-text h1{
        font-size:62px;
    }

    .cta{
        text-align:center;
    }

    .cta-content{
        padding:40px 20px;
    }

    .cta-button{
        padding-bottom:40px;
    }
}

@media(max-width:768px){

    .nav{
        height:auto;
        padding:20px 0;
        flex-direction:column;
        gap:20px;
    }

    .menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        padding:50px 0;
    }

    .hero-content{
        gap:40px;
    }

    .hero-text h1{
        font-size:48px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .services-grid,
    .benefits-grid,
    .irpf-center{
        grid-template-columns:1fr;
    }

    .section-title h2,
    .cta-content h2,
    .irpf-left h2{
        font-size:42px;
    }

    .service-card h3{
        font-size:30px;
    }

    .hero-text p{
        font-size:16px;
    }
}
/* FEATURED SERVICES */

.featured-services{
    padding:50px 0 30px;
    background:#fff;
}

.featured-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.featured-card{
    background:#fff;
    border-radius:22px;
    border:1px solid #ececec;
    padding:30px 25px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 22px rgba(0,0,0,0.04);
}

.featured-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(0,0,0,0.08);
}

.featured-icon{
    display:flex;
    justify-content:center;
    margin-bottom:-18px;
    position:relative;
    z-index:5;
}

.featured-icon img{
    width:110px;
}

.featured-title{
    background:#6b001b;
    border-radius:50px;
    padding:18px;
    margin-bottom:24px;
}

.featured-title h3{
    color:#d8a646;
    font-size:20px;
    font-family:'Inter',sans-serif;
    font-weight:800;
}

.featured-content p{
    font-size:17px;
    line-height:1.7;
    color:#4b4b4b;
}

/* RESPONSIVO */

@media(max-width:991px){

    .featured-grid{
        grid-template-columns:1fr;
    }

}
/* BENEFITS HOVER */

.benefit-item{
    text-align:center;

    padding:30px 20px;
    border-radius:20px;

    transition:all .35s ease;

    cursor:pointer;
}

.benefit-item:hover{
    transform:translateY(-10px);

    background:#ffffff;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.08);
}

/* ÍCONES */

.benefit-item img{
    width:65px;
    margin:auto;
    margin-bottom:20px;

    transition:.35s ease;
}

.benefit-item:hover img{
    transform:scale(1.08);
}

/* TÍTULO */

.benefit-item h3{
    transition:.35s ease;
}

.benefit-item:hover h3{
    color:#6b001b;
}