@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@400;500;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

:root{
--navy:#172d4b;
--navy-2:#172f4d;
--gold:#cd7f32;
--cream:#F5F0E8;
--muted:#5A6A78;
--white:#ffffff;
}

html{
scroll-behavior:smooth;
}

body{
background:var(--cream);
color:var(--navy);
font-family:'DM Sans', Arial, Helvetica, sans-serif;
line-height:1.6;
}

h1,h2,h3,h4{
font-family:'Playfair Display', Georgia, serif;
}

p,a,button,span{
font-family:'DM Sans', Arial, Helvetica, sans-serif;
}

/* HEADER */

.header{
display:flex;
justify-content:space-between;
align-items:center;
height:100px; /* altura fixa */
padding:0 100px; /* remove padding vertical */
background:#F3EBDD;
color:var(--navy);
position:sticky;
top:0;
z-index:1000;
box-shadow:0 10px 30px rgba(28,43,58,0.08);
border-bottom:1px solid rgba(28,43,58,0.06);

}

.logo img{
height:130px;
width:auto;
object-fit:contain;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:24px;
font-weight:700;
margin-left:60px;
font-family:'Playfair Display', Georgia, serif;
color:var(--navy);
}

.logo i{
color:var(--gold);
}

.logo span{
font-size:26px;
letter-spacing:1px;
color:var(--navy);
font-family:'Playfair Display', Georgia, serif;
}

.menu a{
margin:0 20px;
text-decoration:none;
color:var(--navy);
font-size:16px;
font-weight:500;
transition:0.3s;
}

.menu a:hover{
color:var(--gold);
}

.icons{
display:flex;
gap:14px;
margin-right:60px;
}

.icons i{
font-size:18px;
cursor:pointer;
transition:0.3s;
color:var(--navy);
background:rgba(201,168,76,0.12);
padding:10px;
border-radius:50%;
border:1px solid rgba(201,168,76,0.18);
}

.icons i:hover{
color:var(--cream);
background:var(--gold);
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding:0 70px;
color:var(--cream);
background:
linear-gradient(90deg, rgba(28,43,58,0.96) 35%, rgba(28,43,58,0.55) 62%, rgba(28,43,58,0.15) 100%),
url("imagens/tia3.jpg");
background-position:right 20%;
background-repeat:no-repeat;
background-size:cover;
position:relative;
overflow:hidden;
}

.hero::before{
content:'';
position:absolute;
top:-100px;
right:-100px;
width:320px;
height:320px;
border-radius:50%;
border:1px solid rgba(201,168,76,0.12);
pointer-events:none;
}

.hero::after{
content:'';
position:absolute;
bottom:-90px;
left:-90px;
width:240px;
height:240px;
border-radius:50%;
border:1px solid rgba(201,168,76,0.08);
pointer-events:none;
}

.hero h1{
font-size:clamp(34px, 5vw, 56px);
margin-bottom:20px;
line-height:1.15;
max-width:620px;
}

.hero p{
font-size:18px;
margin-bottom:28px;
line-height:1.7;
color:rgba(245,240,232,0.78);
max-width:560px;
}

.hero-buttons{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-top:10px;
}

.btn-contato,
.btn-agendar{
padding:14px 26px;
border:none;
background:var(--gold);
color:var(--navy);
font-weight:700;
border-radius:8px;
cursor:pointer;
font-size:15px;
transition:0.3s;
box-shadow:0 10px 24px rgba(201,168,76,0.18);
}

.btn-contato:hover,
.btn-agendar:hover{
opacity:0.92;
transform:translateY(-2px);
}

/* SERVIÇOS */

.servicos{
padding:110px 100px;
text-align:center;
}

.servicos h2{
margin-bottom:42px;
font-size:clamp(28px, 4vw, 40px);
color:var(--navy);
}

.cards{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
    max-width:1700px;
    margin:30px auto 0;
}

.card{
    padding:25px;
}

.card h3{
    font-size:20px;
}

.card p{
    font-size:14px;
    line-height:1.6;
}

/* SOBRE */

.sobre{
background:var(--navy);
color:var(--cream);
padding:120px 100px;
}

.sobre-container{
display:flex;
justify-content:space-between;
align-items:center;
gap:60px;
flex-wrap:wrap;
}

.sobre-texto{
flex:1;
min-width:300px;
}

.sobre-texto h2{
font-size:clamp(28px, 4vw, 38px);
margin-bottom:20px;
}

.sobre-destaque{
color:var(--gold);
font-weight:700;
margin-bottom:20px;
font-size:18px;
max-width:650px;
}

.sobre-texto p{
line-height:1.7;
margin-bottom:15px;
color:rgba(245,240,232,0.88);
text-align: justify;
}

.sobre-lista p{
display:flex;
align-items:center;
gap:10px;
margin:10px 0;
font-size:15px;
color:var(--cream);
}

.sobre-lista i{
color:var(--gold);
}

.sobre-dados{
flex:1;
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:18px;
min-width:280px;
}

.dado{
background:rgba(255,255,255,0.04);
padding:26px;
border-radius:14px;
text-align:center;
transition:0.3s;
border:1px solid rgba(201,168,76,0.12);
backdrop-filter:blur(2px);
}

.dado:hover{
background:rgba(255,255,255,0.08);
transform:translateY(-5px);
}

.dado h3{
font-size:28px;
color:var(--gold);
margin-bottom:8px;
font-family:'Playfair Display', Georgia, serif;
}

.dado span{
font-size:14px;
color:rgba(245,240,232,0.75);
}

/* CONTATO */


.contato{
padding:140px 100px;
text-align:center;
background:var(--cream);
color:var(--navy);
}

.contato h2{
font-size:clamp(30px, 4vw, 44px);
line-height:1.2;
margin-bottom:25px;
color:var(--navy);
}

.contato-desc{
max-width:600px;
margin:0 auto 40px;
font-size:16px;
line-height:1.7;
color:var(--muted);
}

.btn-whats-cta{
display:inline-block;
padding:14px 32px;
background:var(--navy);
color:var(--white);
text-decoration:none;
font-weight:700;
border-radius:8px;
transition:0.3s;
}

.btn-whats-cta:hover{
background:var(--navy-2);
transform:translateY(-3px);
}

/* FOOTER */

.footer{
background:var(--navy);
color:var(--cream);
padding:60px 100px 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:40px;
margin-bottom:40px;
}

.footer-col h3{
color:var(--gold);
margin-bottom:10px;
font-family:'Playfair Display', Georgia, serif;
}

.footer-col h4{
margin-bottom:15px;
color:var(--cream);
font-family:'Playfair Display', Georgia, serif;
}

.footer-col p{
font-size:14px;
margin:5px 0;
display:flex;
align-items:center;
gap:8px;
color:rgba(245,240,232,0.8);
}

.footer-col a{
display:block;
text-decoration:none;
color:var(--cream);
margin:5px 0;
font-size:14px;
transition:0.3s;
}

.footer-col a:hover{
color:var(--gold);
}

.footer-icons{
display:flex;
gap:10px;
}

.footer-icons i{
background:rgba(255,255,255,0.08);
padding:10px;
border-radius:50%;
cursor:pointer;
transition:0.3s;
color:var(--cream);
}

.footer-icons i:hover{
background:var(--gold);
color:var(--navy);
}

.footer-bottom{
border-top:1px solid rgba(201,168,76,0.15);
text-align:center;
padding-top:15px;
font-size:14px;
color:rgba(245,240,232,0.6);
}

/* RESPONSIVIDADE */

@media (max-width: 1024px){

.header{
padding:20px 40px;
}

.logo{
margin-left:0;
font-size:20px;
}

.logo span{
font-size:22px;
}

.menu a{
margin:0 12px;
font-size:15px;
}

.icons{
margin-right:0;
gap:20px;
}

.hero{
padding:0 40px;
background-position:center right;
}

.hero h1{
font-size:36px;
}

.servicos,
.sobre,
.contato{
padding:100px 40px;
}

.footer{
padding:50px 40px 20px;
}

.footer-container{
grid-template-columns:repeat(2, 1fr);
}

}

@media (max-width: 768px){

.header{
flex-direction:column;
align-items:center;
justify-content:center;
gap:10px;
height:auto;
padding:12px 16px;
text-align:center;
}

.logo{
margin-left:0;
gap:8px;
flex-direction:row;
justify-content:center;
}

.logo img{
height:56px;
width:auto;
object-fit:contain;
}

.logo span{
font-size:18px;
line-height:1.2;
}

.menu{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:8px 12px;
}

.menu a{
margin:0;
font-size:14px;
}

.icons{
margin-right:0;
gap:10px;
justify-content:center;
flex-wrap:wrap;
}

.icons i{
font-size:16px;
padding:8px;
}
}

@media (max-width: 480px){

.header{
padding:10px 12px;
gap:8px;
}

.logo img{
height:46px;
}

.logo span{
font-size:16px;
}

.menu a{
font-size:13px;
}

.icons{
gap:8px;
}

.icons i{
font-size:15px;
padding:7px;
}
}

/* ─── SEÇÃO CONFIANÇA ─── */
.trust{
  background: var(--cream);
  padding: 72px 40px;
}

.section-tag{
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-sub{
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.trust-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.trust-card{
  background: #fff;
  border: 0.5px solid rgba(28,43,58,0.08);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
}

.trust-num{
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--navy);
  font-weight: 700;
}

.trust-label{
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.5;
}


/* ─── TRUST MAIS COMPACTA ─── */

.trust {
  padding: 0;
  background: var(--cream);
  margin-bottom: 80px
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px; /* ↓ menor altura */
}

/* IMAGEM */

.trust-image {
  background: url("imagens/tia4.jpg");
  background-size: cover;
  background-position: center 30%;
}

/* CONTEÚDO */

.trust-content {
  padding: 50px 50px; /* ↓ menos espaçamento */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-content .section-title {
  font-size: 28px; /* ↓ menor */
}

.trust-content .section-sub {
  font-size: 14px; /* ↓ menor */
  margin-bottom: 20px;
}

/* GRID DOS NÚMEROS */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; /* ↓ menor espaço */
  margin-top: 20px;
}

.trust-card {
  padding: 18px 14px; /* ↓ menor */
}

.trust-num {
  font-size: 28px; /* ↓ menor */
}

.trust-label {
  font-size: 12px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .trust-container {
    grid-template-columns: 1fr;
  }

  .trust-image {
    height: 280px; /* ↓ menor */
  }

  .trust-content {
    padding: 40px 20px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px){

.cards{
grid-template-columns: repeat(2, 1fr);
}

.sobre-container{
flex-direction:column;
gap:40px;
}

.sobre-dados{
grid-template-columns:repeat(2, 1fr);
}

}

@media (max-width: 768px){

.hero{
min-height:auto;
padding:80px 24px;
background-position:center;
text-align:center;
}

.hero h1{
max-width:100%;
}

.hero p{
max-width:100%;
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
justify-content:center;
}

.servicos{
padding:80px 24px;
}

.cards{
grid-template-columns: 1fr;
}

.sobre{
padding:80px 24px;
}

.sobre-dados{
grid-template-columns:1fr;
}

.contato{
padding:80px 24px;
}

.footer{
padding:50px 24px 20px;
}

.footer-container{
grid-template-columns:1fr;
gap:30px;
text-align:center;
}

.footer-col p{
justify-content:center;
}

.footer-icons{
justify-content:center;
}

}

@media (max-width: 480px){

.hero h1{
font-size:28px;
line-height:1.2;
}

.hero p{
font-size:15px;
}

.btn-contato,
.btn-agendar{
width:100%;
}

.trust-content{
padding:30px 18px;
}

.trust-content .section-title{
font-size:22px;
}

.trust-grid{
grid-template-columns:1fr;
}

}

.calculo-page{
    min-height:100vh;
    background:#F5F0E8;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
}

.calculo-box{
    width:100%;
    max-width:700px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.calculo-box h1{
    text-align:center;
    margin-bottom:30px;
    color:#1C2B3A;
}

.campo{
    margin-bottom:20px;
}

.campo label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#1C2B3A;
}

.campo input,
.campo select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.calculo-box button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#C9A84C;
    color:#1C2B3A;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.calculo-box button:hover{
    opacity:.9;
}

.resultado{
    margin-top:25px;
    padding:15px;
    border-radius:10px;
    background:#f7f7f7;
    text-align:center;
    display:none;
}


.calculo-page{
    min-height:100vh;
    background:var(--cream);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 20px;
}

.calculo-box{
    width:100%;
    max-width:800px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.calculo-box h1{
    text-align:center;
    margin-bottom:30px;
}

.campo{
    margin-bottom:20px;
}

.campo label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.campo input,
.campo select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
}

.calculo-box button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:var(--gold);
    color:var(--navy);
    font-weight:700;
    cursor:pointer;
}

.resultado{
    display:none;
    margin-top:25px;
    padding:25px;
    border-radius:12px;
    background:#f8f8f8;
    border-left:5px solid var(--gold);
}

.valor-inss{
    font-size:40px;
    color:var(--gold);
    font-weight:700;
    margin-top:10px;
}

.calculo-box form{
    width:100%;
}

.calculo-box h1{
    text-align:center;
    margin-bottom:30px;
}

.calculo-box button{
    margin-top:10px;
}


/* ===== SERVIÇOS ===== */

/* ===== SERVIÇOS ZIG-ZAG - MANTENDO A APARÊNCIA ===== */

.servicos{
    padding:120px 40px;
    background:var(--cream);

    /* Corrige o alinhamento herdado do bloco antigo .servicos{text-align:center} */
    text-align:left;
}

.servicos h2{
    text-align:center;
    font-size:clamp(32px,4vw,48px);
    margin-bottom:100px;
    color:var(--navy);
}

.servicos-zigzag{
    display:flex;
    flex-direction:column;
    gap:100px;
    max-width:1400px;
    margin:auto;
}

/* CARD */

.servico-card{
    position:relative;
    width:100%;
    max-width:1100px;
    min-height:380px;
}

/* ESQUERDA */

.servico-card.esquerda{
    margin-right:auto;
}

/* DIREITA */

.servico-card.direita{
    margin-left:auto;
}

/* RETÂNGULO */

.servico-texto{
    background:#cd7f32;
    border-radius:30px;
    padding:50px 50px 50px 260px;
    width:75%;
    margin-left:auto;
    box-shadow:0 20px 50px rgba(0,0,0,.12);

    /* Formatação igual ao texto da seção Sobre */
    text-align:left;
}

/* IMAGEM */

.servico-img{
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
}

.servico-img img{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

/* CARD DA DIREITA */

.servico-card.direita .servico-texto{
    margin-left:0;
    margin-right:auto;
    padding:50px 260px 50px 50px;
}

.servico-card.direita .servico-img{
    left:auto;
    right:0;
}

/* TEXTO COM FORMATAÇÃO IGUAL À SEÇÃO SOBRE */

.servico-texto h3{
    font-size:clamp(28px, 4vw, 38px);
    margin-bottom:20px;
    color:#fff;
    line-height:1.2;
}

.servico-texto p{
    font-size:16px;
    line-height:1.7;
    margin-bottom:15px;
    color:rgba(245,240,232,0.88);
    text-align:left;
}

.servico-texto strong{
    color:#fff;
    font-weight:700;
}

/* BOTÃO / LINK DO SERVIÇO */

.btn-servico{
    display:inline-flex;
    align-items:center;
    justify-content:flex-start;
    gap:8px;
    max-width:100%;
    margin-top:10px;
    padding:14px 24px;
    border-radius:8px;
    background:var(--navy);
    color:var(--white);
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    text-align:left;
    text-decoration:none;
    transition:0.3s;
}

.btn-servico:hover{
    background:var(--navy-2);
    transform:translateY(-3px);
}

/* RESPONSIVO */

@media (max-width: 900px){

    .servico-card{
        min-height:auto;
    }

    .servico-img{
        position:relative;
        top:auto;
        left:auto;
        right:auto;
        transform:none;
        margin-bottom:-50px;
        display:flex;
        justify-content:center;
    }

    .servico-card.direita .servico-img{
        right:auto;
    }

    .servico-img img{
        width:100%;
        max-width:350px;
        height:250px;
    }

    .servico-texto,
    .servico-card.direita .servico-texto{
        width:100%;
        padding:90px 30px 35px;
        margin:0;
        text-align:left;
    }

}

/* ANIMAÇÃO DOS SERVIÇOS */

.servico-card{
    opacity:0;
    transition:all 0.8s ease;
}

.servico-card.esquerda{
    transform:translateX(-120px);
}

.servico-card.direita{
    transform:translateX(120px);
}

.servico-card.show{
    opacity:1;
    transform:translateX(0);
}

/* ===== PROVAS DE TRABALHOS DE INSS ===== */

.provas-inss{
    padding:100px 70px;
    background:#f8f7f2;
    color:var(--navy);
    overflow:hidden;
}

.provas-inss-container{
    width:100%;
    max-width:1500px;
    margin:0 auto;
    text-align:center;
}

.provas-inss h2{
    font-size:clamp(30px, 4vw, 44px);
    line-height:1.2;
    color:var(--navy);
    margin-bottom:5px;
}

.provas-aspas{
    height:60px;
    margin-bottom:10px;
    color:rgba(23,45,75,0.12);
    font-family:'Playfair Display', Georgia, serif;
    font-size:85px;
    font-weight:700;
    line-height:1;
}

.provas-carousel{
    position:relative;
    width:100%;
    padding:0 35px;
}

.provas-track{
    display:grid;
    grid-auto-flow:column;
    grid-auto-columns:calc((100% - 36px) / 3);
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    overscroll-behavior-inline:contain;
    padding:10px 2px 20px;
    scrollbar-width:none;
}

.provas-track::-webkit-scrollbar{
    display:none;
}

.prova-card{
    width:100%;
    overflow:hidden;
    background:var(--navy);
    border:1px solid rgba(23,45,75,0.10);
    box-shadow:0 14px 35px rgba(23,45,75,0.13);
    scroll-snap-align:start;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}

.prova-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(23,45,75,0.18);
}

.prova-card img{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio:1080 / 1350;
    object-fit:contain;
    background:#f4f4ef;
}

.provas-seta{
    position:absolute;
    top:50%;
    z-index:5;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:var(--navy);
    color:var(--white);
    font-size:17px;
    cursor:pointer;
    transform:translateY(-50%);
    box-shadow:0 8px 20px rgba(23,45,75,0.22);
    transition:background 0.3s ease, transform 0.3s ease;
}

.provas-seta:hover{
    background:var(--gold);
    color:var(--navy);
    transform:translateY(-50%) scale(1.07);
}

.provas-seta-esquerda{
    left:0;
}

.provas-seta-direita{
    right:0;
}

.provas-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    margin-top:4px;
}

.provas-dots button{
    width:7px;
    height:7px;
    padding:0;
    border:none;
    border-radius:50%;
    background:rgba(23,45,75,0.25);
    cursor:pointer;
    transition:0.3s;
}

.provas-dots button.ativo{
    background:var(--navy);
    transform:scale(1.25);
}

.provas-dots button:hover{
    background:var(--gold);
    transform:scale(1.35);
}


/* PROVAS DE INSS — TABLET */

@media (max-width:1024px){

    .provas-inss{
        padding:90px 40px;
    }

    .provas-track{
        grid-auto-columns:calc((100% - 18px) / 2);
    }

}


/* PROVAS DE INSS — CELULAR */

@media (max-width:700px){

    .provas-inss{
        padding:75px 18px;
    }

    .provas-inss h2{
        font-size:30px;
    }

    .provas-aspas{
        height:48px;
        font-size:70px;
    }

    .provas-carousel{
        padding:0 27px;
    }

    .provas-track{
        grid-auto-columns:100%;
        gap:14px;
    }

    .provas-seta{
        width:36px;
        height:36px;
        font-size:14px;
    }

}


/* PROVAS DE INSS — CELULAR PEQUENO */

@media (max-width:480px){

    .provas-inss{
        padding:65px 10px;
    }

    .provas-inss h2{
        font-size:27px;
    }

    .provas-carousel{
        padding:0 22px;
    }

    .provas-seta{
        width:32px;
        height:32px;
        font-size:12px;
    }

}




/* Mostra mais o lado direito da foto cont3 sem mudar o tamanho da caixa */
.servico-img img.imagem-cont2 {
    object-position: 85% center;
}