/* ===========================
   PADRÃO H2 DAS SEÇÕES
=========================== */

section h2{
    font-size: clamp(2rem,4vw,2.7rem);

    font-family: var(--font-heading);
    font-weight:800;

    line-height:1.2;
    letter-spacing:-0.03em;

    color:var(--roxo);

    text-align:center;

    max-width:900px;

    margin:0 auto var(--space-lg);
}

/* =========================
   HERO SERVIÇOS - AGÊNCIA 70
========================= */
.hero-servicos {
    padding: var(--space-lg) var(--space-lg);
    text-align: center;

    /* variação premium dentro da paleta */
    background: linear-gradient(
        135deg,
        var(--roxo) 0%,
        #3b0f47 45%,
        #2a0b33 100%
    );

    color: #fff;
    position: relative;
    overflow: hidden;
}

/* camada de luz (amarelo da base) */
.hero-servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 25% 0%,
        rgba(251, 219, 92, 0.16),
        transparent 60%
    );

    pointer-events: none;
}

/* profundidade extra (ramalhete da base) */
.hero-servicos::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 30%,
        rgba(164, 124, 161, 0.12),
        transparent 65%
    );

    pointer-events: none;
}

/* conteúdo acima das camadas */
.hero-servicos > * {
    position: relative;
    z-index: 1;
}

/* H1 */
.hero-servicos h1 {
    font-size: var(--font-h1);
    line-height: 1.15;
    color: #fff;
    max-width: 900px;
    margin: 0 auto var(--space-md);
}

/* texto */
.hero-servicos p {
    font-size: 1.1rem;
    line-height: var(--line-height-base);
    color: rgba(255, 255, 255, 0.82);
    max-width: 780px;
    margin: 0 auto var(--space-lg);
}

/* ações */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* CTA principal */
.cta-primary {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    border-radius: 10px;
    background: var(--amarelo);
    color: var(--roxo) !important;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}

.cta-primary:hover,
.cta-primary:focus,
.cta-primary:active {
    background: var(--amarelo);
    color: var(--roxo) !important;
    transform: translateY(-2px);
    filter: brightness(1.03);
    outline: none;
}

/* ajuste opcional se usar .btn dentro do hero */
.hero-servicos .btn {
    margin-top: var(--space-sm);
}

/* =========================
   INTRODUÇÃO SERVIÇOS - PREMIUM
========================= */
/* Introdução com espaçamento maior */
.introducao-servicos h2{
    margin-bottom:var(--space-xl);
}


.introducao-servicos {
    padding: var(--space-xxl) var(--space-lg);
    position: relative;
    text-align: center;

    /* fundo sofisticado em camadas */
    background: 
        radial-gradient(circle at 20% 10%, rgba(251, 219, 92, 0.10), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(164, 124, 161, 0.10), transparent 45%),
        linear-gradient(180deg, #fbf3e3 0%, #ffffff 100%);
    overflow: hidden;
}

/* linha decorativa premium */
.introducao-servicos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--amarelo),
        transparent
    );

    opacity: 0.9;
}

/* leve textura de profundidade */
.introducao-servicos::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(81, 19, 97, 0.04) 1px,
        transparent 1px
    );
    background-size: 22px 22px;

    opacity: 0.4;
    pointer-events: none;
}

.introducao-servicos::after{
    background-image: radial-gradient(
        rgba(81, 19, 97, 0.04) 1px,
        transparent 1px
    );
}



/* garante conteúdo acima das camadas */
.introducao-servicos > * {
    position: relative;
    z-index: 1;
}

/* parágrafos com ritmo editorial */
.introducao-servicos p {
    max-width: 780px;
    margin: 0 auto var(--space-lg);
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(81, 19, 97, 0.78);
    text-align: center;
}

/* destaque progressivo (primeiros vs últimos textos) */
.introducao-servicos p:nth-child(2) {
    color: rgba(81, 19, 97, 0.9);
}

.introducao-servicos p:last-child {
    font-weight: 500;
    color: rgba(81, 19, 97, 0.88);
    max-width: 820px;
}

/* efeito de “bloco de autoridade” */
.introducao-servicos {
    border-top: 1px solid rgba(81, 19, 97, 0.08);
    border-bottom: 1px solid rgba(81, 19, 97, 0.08);
}  

/* =========================
   SERVIÇOS — REFINO PREMIUM 
========================= */
.servicos {
    padding: 20px 24px;
    position: relative;
}

/* GRID */
.servicos .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto;
}

/* CARD refinado (sem mexer no ambiente) */
.servicos .card {
    background: #ffffff;
    border: 1px solid rgba(81, 19, 97, 0.10);
    border-radius: 18px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 240px;
    box-shadow: 0 10px 25px rgba(81, 19, 97, 0.06);
}

/* hover mais suave */
.servicos .card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 219, 92, 0.7);
    box-shadow: 0 25px 60px rgba(81, 19, 97, 0.15);
}

/* barra lateral (mantida mas discreta) */
.servicos .card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18%;
    height: 64%;
    width: 3px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.servicos .card:hover::before {
    background: var(--amarelo);
}

/* título */
.servicos .card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--roxo);
    margin-bottom: 10px;
}

/* texto */
.servicos .card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(81, 19, 97, 0.72);
    margin-bottom: 18px;
}

/* =========================
   BOTÃO CENTRALIZADO NO CARD
========================= */
.servicos .card .btn {
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--roxo);
    color: #fff;
    text-align: center;
    transition: all 0.25s ease;
}

/* hover botão */
.servicos .card .btn:hover {
    background: var(--amarelo);
    color: var(--roxo);
    transform: translateY(-2px);
}

/* ===========================
   PORQUE INVESTIR
=========================== */
.porque-investir{
    max-width:1200px;
    margin:auto;
    padding:70px 40px;
    background:white;
    border-radius:30px;
    border:1px solid rgba(251,219,92,.45);
    box-shadow:0 10px 40px rgba(0,0,0,.04);

    position:relative;
    overflow:hidden;

    column-count:2;
    column-gap:60px;
}

/* detalhe decorativo */
.porque-investir::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(
        to bottom,
        var(--amarelo),
        var(--ramalhete)
    );
}

/* INTRO */
.porque-investir > p:first-of-type{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
    font-size:1.05rem;
    color:rgba(81,19,97,.75);
}

.porque-investir h2,
.porque-investir > p:first-of-type{
    column-span:all;
}

/* PARÁGRAFOS */
.porque-investir p{
    font-size:1rem;
    line-height:1.9;
    color:rgba(81,19,97,.75);
    margin-bottom:24px;
    max-width:none;
}

/* destaque da primeira letra */
.porque-investir p:not(:first-of-type)::first-letter{
    font-size:2rem;
    font-weight:700;
    color:var(--roxo);
}

/* =========================
   CTA INTERMEDIÁRIA
========================= */
.cta-intermediaria {
  background: var(--ramalhete);
  padding: 45px 30px;
  border-radius: 18px;
  max-width: 1100px;
  margin: var(--space-xl) auto;
  text-align: center;
}

/* CTA com texto branco */
.cta-intermediaria h2{
    color:#fff;
}

.cta-intermediaria p {
  color: rgba(255,255,255,.9);
  max-width: 700px;
  margin: 0 auto 22px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-intermediaria .btn {
  background: var(--amarelo);
  color: var(--roxo);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
}

.cta-intermediaria .btn:hover {
  background: white;
  color: var(--roxo);
  transform: translateY(-2px);
}

/* =========================
   PROCESSO
========================= */
.processo {
    max-width: 1200px;
    margin: auto;
}

.processo > p {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    color: rgba(81,19,97,.75);
}

/* GRID */
.grid-processo{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    position:relative;
}

/* linha ligando etapas */
.grid-processo::before{
    content:"";
    position:absolute;
    top:35px;
    left:10%;
    width:80%;
    height:2px;
    background: rgba(164,124,161,.25);
    z-index:0;
}

/* CARDS */
.grid-processo article{
    position:relative;
    z-index:1;
    background:#fff;
    padding:35px 25px;
    border-radius:20px;

    /* borda dourada mais visível */
    border:2px solid rgba(251,219,92,.7);

    box-shadow:
    inset 0 0 0 1px rgba(251,219,92,.25),
    0 8px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

/* círculo superior */
.grid-processo article::before{
    content:counter(step, decimal-leading-zero);
    counter-increment:step;
    position:absolute;
    top:-18px;
    left:25px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:var(--roxo);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:.9rem;
    box-shadow:0 5px 15px rgba(81,19,97,.25);
}

.grid-processo{
    counter-reset:step;
}

.grid-processo article:hover{
    transform:translateY(-6px);
    border-color:var(--amarelo);
    box-shadow:
    inset 0 0 0 1px rgba(251,219,92,.5),
    0 15px 35px rgba(0,0,0,.08);
}

/* TÍTULO */
.grid-processo h3{
    font-size:1.15rem;
    margin-bottom:14px;
    padding-top:15px;
    text-align:center; /* centralizado */
}

/* TEXTO */
.grid-processo p{
    font-size:.95rem;
    color:rgba(81,19,97,.75);
    text-align:center;
    margin:0;
}

/* ===========================
   DIFERENCIAIS
=========================== */
.diferenciais{
    max-width:1200px;
    margin:auto;
    padding:20px 20px;
}

.diferenciais > p{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
    color:rgba(81,19,97,.75);
    line-height:1.8;
    font-size:1rem;
}

/* GRID */
.grid-diferenciais{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* CARDS */
.grid-diferenciais > div{
    background:white;
    padding:32px;
    border-radius:22px;
    border:2px solid rgba(251,219,92,.55);
    box-shadow:
    0 8px 30px rgba(0,0,0,.04);
    position:relative;
    transition:.35s ease;
    overflow:hidden;
}

/* detalhe superior */
.grid-diferenciais > div::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--amarelo),
        var(--ramalhete)
    );

    opacity:.9;
}

/* efeito hover */
.grid-diferenciais > div:hover{
    transform:translateY(-8px);
    border-color:var(--amarelo);
    box-shadow:
    0 20px 45px rgba(0,0,0,.08);
}

/* TÍTULOS */
.grid-diferenciais h3{
    font-size:1.2rem;
    font-weight:700;
    margin-bottom:12px;
    color:var(--roxo);
    line-height:1.4;
}

/* TEXTO */
.grid-diferenciais p{
    margin:0;
    color:rgba(81,19,97,.75);
    line-height:1.7;
}

/* ===========================
   FAQ
=========================== */
.faq{
    max-width:1100px;
    margin:auto;
    padding:50px 20px;
}

/* ITEM */
.faq-item{
    position:relative;
    padding:28px 0 28px 45px;
    border-bottom:1px solid rgba(81,19,97,.12);
    transition:.35s ease;
}

/* linha lateral */
.faq-item::before{
    content:"";
    position:absolute;
    left:0;
    top:30px;
    width:3px;
    height:0;
    background:linear-gradient(
        to bottom,
        var(--amarelo),
        var(--ramalhete)
    );

    border-radius:10px;
    transition:.35s ease;
}

/* número automático */
.faq{
    counter-reset:faq-counter;
}

.faq-item::after{
    counter-increment:faq-counter;
    content:counter(faq-counter);
    position:absolute;
    left:0;
    top:25px;
    font-size:.8rem;
    font-weight:700;
    color:rgba(81,19,97,.4);
    width:28px;
}

/* HOVER */
.faq-item:hover{
    padding-left:60px;
}

.faq-item:hover::before{
    height:70%;
}

.faq-item:hover h3{
    color:var(--roxo);
}

/* PERGUNTA */
.faq-item h3{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:10px;
    color:rgba(81,19,97,.85);
    transition:.3s;
}

/* remove o ✔ do HTML visualmente */
.faq-item h3::first-letter{
    display:none;
}

/* RESPOSTA */
.faq-item p{
    margin:0;
    max-width:900px;
    color:rgba(81,19,97,.72);
    line-height:1.8;
    font-size:.96rem;
}

/* =========================
     WHATSAPP
  ========================= */
    .whatsapp-button {
      position: fixed;
      bottom: 18px;
      right: 18px;
      background: #25d366;
      color: #fff;
      padding: 10px 14px;
      border-radius: 40px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      font-size: 13px;
      max-width: 90vw;
      z-index: 9999;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
      transition: all 0.25s ease;
      animation:none;
    }

    .whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,.30);
}

    .whatsapp-button img {
      width: 22px;
      height: auto;
    }

    @keyframes pulseWhats {
      0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
      }

      50% {
        transform: scale(1.07);
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
      }

      100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
      }
    }