*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --verde-escuro: #1a3a2a;
    --verde-medio: #2d5c40;
    --verde-claro: #3d7a56;
    --verde-accent: #4e9e6e;
    --verde-trace: #c8dfd0;
    --off-white: #f7f5f0;
    --branco: #ffffff;
    --cinza-quente: #e8e4de;
    --cinza-texto: #5a5550;
    --dourado: #b8a06a;
    --fonte-display: 'Cormorant Garamond', Georgia, serif;
    --fonte-corpo: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--fonte-corpo);
    background: var(--branco);
    color: var(--verde-escuro);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(4px); box-shadow: 0 1px 16px rgba(0,0,0,0.09);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: var(--fonte-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--branco);
    text-decoration: none;
    letter-spacing: 0.04em;
  }
  .logo span { color: var(--dourado); }

  nav { display: flex; gap: 2rem; align-items: center; }
  nav a {
    color: rgba(26,58,42,0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--verde-escuro); }

  .btn-header {
    background: var(--dourado);
    color: var(--verde-escuro) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 500 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.08em !important;
    transition: background 0.2s !important;
  }
  .btn-header:hover { background: #cbb47d !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--verde-escuro);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 79px,
        rgba(200,223,208,0.05) 79px,
        rgba(200,223,208,0.05) 80px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(200,223,208,0.05) 79px,
        rgba(200,223,208,0.05) 80px
      );
  }

  .hero-content {
    padding: 6rem 5% 6rem 8%;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dourado);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.8rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--dourado);
  }

  .hero h1 {
    font-family: var(--fonte-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 600;
    color: var(--branco);
    line-height: 1.12;
    margin-bottom: 1.6rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--verde-trace);
  }

  .hero-sub {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    max-width: 480px;
    margin-bottom: 3rem;
    line-height: 1.75;
    font-weight: 300;
  }

  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--dourado);
    color: var(--verde-escuro);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #cbb47d; transform: translateY(-1px); }

  .btn-secondary {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--branco); }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(200,223,208,0.15);
  }
  .stat-item {}
  .stat-num {
    font-family: var(--fonte-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero-visual {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #2d5c40 0%, #1a3a2a 40%, #0f2318 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-img-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234e9e6e' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-badge {
    position: absolute;
    bottom: 10%;
    left: -2rem;
    background: var(--dourado);
    padding: 1.5rem 2rem;
    border-radius: 2px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .hero-badge strong {
    display: block;
    font-family: var(--fonte-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde-escuro);
    line-height: 1;
  }
  .hero-badge span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26,58,42,0.7);
    font-weight: 500;
  }

  .hero-arch-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
  }

  /* ── SECTIONS COMUNS ── */
  section { padding: 6rem 5%; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde-claro);
    font-weight: 500;
    margin-bottom: 1.2rem;
  }
  .section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--verde-claro);
  }

  .section-title {
    font-family: var(--fonte-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--verde-escuro);
    letter-spacing: -0.01em;
  }

  .section-title em { font-style: italic; color: var(--verde-claro); }

  /* ── SOBRE ── */
  .sobre {
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .sobre-content {}
  .sobre-content p {
    color: var(--cinza-texto);
    margin-top: 1.5rem;
    font-size: 1.02rem;
    line-height: 1.8;
  }
  .sobre-content p + p { margin-top: 1rem; }

  .sobre-assinatura {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cinza-quente);
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .assinatura-avatar {
    width: 52px;
    height: 52px;
    background: var(--verde-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dourado);
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
  }
  .assinatura-info strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--verde-escuro);
  }
  .assinatura-info span {
    font-size: 0.82rem;
    color: var(--cinza-texto);
  }

  .sobre-numeros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--cinza-quente);
    border: 1px solid var(--cinza-quente);
    border-radius: 4px;
    overflow: hidden;
  }
  .numero-card {
    background: var(--branco);
    padding: 2.5rem;
    text-align: center;
  }
  .numero-card:nth-child(1) { border-bottom: 1px solid var(--cinza-quente); }
  .numero-card:nth-child(2) { border-bottom: 1px solid var(--cinza-quente); }
  .numero-card:nth-child(1),
  .numero-card:nth-child(2) { border-right: 1px solid var(--cinza-quente); }

  .numero-card .n {
    font-family: var(--fonte-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde-escuro);
    line-height: 1;
    display: block;
  }
  .numero-card .l {
    font-size: 0.8rem;
    color: var(--cinza-texto);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    display: block;
  }

  /* ── SERVIÇOS ── */
  .servicos { background: var(--branco); }
  .servicos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cinza-quente);
  }
  .servicos-header-left { max-width: 500px; }
  .servicos-header-right {
    font-size: 0.9rem;
    color: var(--cinza-texto);
    max-width: 280px;
    text-align: right;
    line-height: 1.6;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cinza-quente);
    border: 1px solid var(--cinza-quente);
    border-radius: 4px;
    overflow: hidden;
  }

  .servico-card {
    background: var(--branco);
    padding: 2.5rem 2rem;
    transition: background 0.25s;
    position: relative;
  }
  .servico-card:hover { background: var(--verde-escuro); }
  .servico-card:hover .sc-num,
  .servico-card:hover .sc-title,
  .servico-card:hover .sc-desc,
  .servico-card:hover .sc-items li { color: var(--branco) !important; }
  .servico-card:hover .sc-items li::before { background: var(--dourado) !important; }
  .servico-card:hover .sc-divider { background: rgba(200,223,208,0.2) !important; }

  .sc-num {
    font-family: var(--fonte-display);
    font-size: 0.85rem;
    color: var(--dourado);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
    transition: color 0.25s;
  }
  .sc-icon {
    width: 44px;
    height: 44px;
    background: var(--verde-trace);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: background 0.25s;
  }
  .servico-card:hover .sc-icon { background: rgba(200,223,208,0.15); }
  .sc-icon svg { width: 22px; height: 22px; stroke: var(--verde-escuro); transition: stroke 0.25s; }
  .servico-card:hover .sc-icon svg { stroke: var(--branco); }

  .sc-title {
    font-family: var(--fonte-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 0.8rem;
    line-height: 1.25;
    transition: color 0.25s;
  }
  .sc-divider {
    height: 1px;
    background: var(--cinza-quente);
    margin: 1.2rem 0;
    transition: background 0.25s;
  }
  .sc-desc {
    font-size: 0.9rem;
    color: var(--cinza-texto);
    line-height: 1.7;
    transition: color 0.25s;
  }
  .sc-items {
    list-style: none;
    margin-top: 1.2rem;
  }
  .sc-items li {
    font-size: 0.85rem;
    color: var(--cinza-texto);
    padding: 0.3rem 0;
    padding-left: 1.1rem;
    position: relative;
    transition: color 0.25s;
  }
  .sc-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--verde-claro);
    border-radius: 50%;
    transition: background 0.25s;
  }

  /* ── DIFERENCIAIS ── */
  .diferenciais {
    background: var(--verde-escuro);
    color: var(--branco);
    position: relative;
    overflow: hidden;
  }
  .diferenciais::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(200,223,208,0.08);
    pointer-events: none;
  }
  .diferenciais::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200,223,208,0.06);
    pointer-events: none;
  }

  .diferenciais .section-title { color: var(--branco); }
  .diferenciais .section-title em { color: var(--verde-trace); }
  .diferenciais .section-tag { color: var(--dourado); }
  .diferenciais .section-tag::before { background: var(--dourado); }

  .diferenciais-intro {
    color: rgba(255,255,255,0.6);
    margin-top: 1.2rem;
    max-width: 520px;
    font-size: 1rem;
    font-weight: 300;
  }

  .diferenciais-header { margin-bottom: 4rem; }

  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(200,223,208,0.1);
    border: 1px solid rgba(200,223,208,0.1);
    border-radius: 4px;
    overflow: hidden;
  }
  .dif-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem 1.8rem;
    transition: background 0.25s;
  }
  .dif-card:hover { background: rgba(255,255,255,0.07); }
  .dif-num {
    font-family: var(--fonte-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(200,223,208,0.15);
    line-height: 1;
    margin-bottom: 1.5rem;
    display: block;
    transition: color 0.25s;
  }
  .dif-card:hover .dif-num { color: rgba(200,223,208,0.25); }
  .dif-title {
    font-family: var(--fonte-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--branco);
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }
  .dif-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── PROCESSO ── */
  .processo { background: var(--off-white); }
  .processo-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
  }
  .processo-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--cinza-quente);
    z-index: 0;
  }
  .step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
  }
  .step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--branco);
    border: 1px solid var(--cinza-quente);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--fonte-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--verde-escuro);
    position: relative;
    transition: background 0.25s, border-color 0.25s;
  }
  .step:hover .step-circle {
    background: var(--verde-escuro);
    border-color: var(--verde-escuro);
    color: var(--branco);
  }
  .step-title {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--verde-escuro);
    margin-bottom: 0.5rem;
  }
  .step-desc {
    font-size: 0.8rem;
    color: var(--cinza-texto);
    line-height: 1.6;
  }

  /* ── DEPOIMENTOS ── */
  .depoimentos { background: var(--branco); }
  .dep-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3.5rem;
  }
  .dep-intro {
    color: var(--cinza-texto);
    margin-top: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .dep-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
  }
  .dep-media-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 4px;
  }
  .dep-media-item .dn {
    font-family: var(--fonte-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--verde-escuro);
    display: block;
  }
  .dep-media-item .dl {
    font-size: 0.75rem;
    color: var(--cinza-texto);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .dep-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid var(--cinza-quente);
    position: relative;
  }
  .dep-card::before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1.5rem;
    font-family: var(--fonte-display);
    font-size: 5rem;
    color: var(--verde-trace);
    line-height: 1;
  }
  .dep-stars { color: var(--dourado); font-size: 0.85rem; margin-bottom: 1rem; }
  .dep-text {
    font-size: 0.92rem;
    color: var(--cinza-texto);
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }
  .dep-autor {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid var(--cinza-quente);
    padding-top: 1rem;
  }
  .dep-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--verde-escuro);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fonte-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dourado);
    flex-shrink: 0;
  }
  .dep-nome strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--verde-escuro);
  }
  .dep-nome span {
    font-size: 0.78rem;
    color: var(--cinza-texto);
  }

  /* ── OBJEÇÕES FAQ ── */
  .faq { background: var(--off-white); }
  .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
  }
  .faq-intro p {
    color: var(--cinza-texto);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
  }
  .faq-cta-box {
    margin-top: 2.5rem;
    background: var(--verde-escuro);
    padding: 2rem;
    border-radius: 4px;
    color: var(--branco);
  }
  .faq-cta-box h4 {
    font-family: var(--fonte-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }
  .faq-cta-box p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0 !important;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }
  .faq-cta-box a {
    display: inline-block;
    background: var(--dourado);
    color: var(--verde-escuro);
    padding: 0.75rem 1.8rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s;
  }
  .faq-cta-box a:hover { background: #cbb47d; }

  .faq-list { }
  .faq-item {
    border-bottom: 1px solid var(--cinza-quente);
    overflow: hidden;
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--fonte-corpo);
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--verde-escuro);
    text-align: left;
    gap: 1rem;
    transition: color 0.2s;
  }
  .faq-question:hover { color: var(--verde-claro); }
  .faq-icon {
    width: 22px;
    height: 22px;
    border: 1px solid var(--cinza-quente);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    font-size: 1rem;
    color: var(--verde-escuro);
    line-height: 1;
  }
  .faq-item.open .faq-icon {
    background: var(--verde-escuro);
    border-color: var(--verde-escuro);
    color: var(--branco);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--cinza-texto);
    line-height: 1.8;
  }

  /* ── CONVERSÃO / CTA ── */
  .cta-section {
    background: var(--verde-escuro);
    padding: 7rem 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .cta-section::before {
    content: 'BRA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--fonte-display);
    font-size: 28vw;
    font-weight: 700;
    color: rgba(255,255,255,0.025);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
  }
  .cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
  .cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dourado);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  .cta-tag::before, .cta-tag::after {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--dourado);
  }
  .cta-section h2 {
    font-family: var(--fonte-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--branco);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
  }
  .cta-section h2 em { font-style: italic; color: var(--verde-trace); }
  .cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .cta-guarantee {
    margin-top: 2.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
  }

  /* ── FOOTER ── */
  footer {
    background: #0f1f16;
    padding: 5rem 5% 2.5rem;
    color: rgba(255,255,255,0.55);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 2rem;
  }
  .footer-brand .logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
  .footer-brand p {
    font-size: 0.87rem;
    line-height: 1.75;
    max-width: 280px;
    color: rgba(255,255,255,0.45);
  }
  .footer-brand .f-crea {
    margin-top: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em;
  }
  .footer-col h5 {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.6rem; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.8rem;
  }
  .footer-contact-item strong {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
  }
  .footer-bottom a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
  }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: #25D366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  .whatsapp-float svg { width: 30px; height: 30px; fill: white; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--verde-escuro); border-radius: 2px; transition: all 0.25s; }
  .nav-open { display: flex !important; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.99); padding: 1.5rem 5%; gap: 0; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 99; }
  .nav-open a { color: var(--verde-escuro) !important; font-size: 1rem !important; padding: 1rem 0; border-bottom: 1px solid var(--cinza-quente); width: 100%; }
  .nav-open .btn-header { margin-top: 0.5rem; text-align: center; }
  .hamburger { display: none; }

  /* ── RESPONSIVO ── */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 5rem 5%; }
    .sobre { grid-template-columns: 1fr; gap: 3rem; }
    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .diferenciais-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dep-grid { grid-template-columns: 1fr 1fr; }
    .dep-header { grid-template-columns: 1fr; gap: 2rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
    .processo-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .processo-steps::before { display: none; }
    .servicos-header { flex-direction: column; gap: 1rem; }
    .servicos-header-right { text-align: left; max-width: 100%; }
  }
  @media (max-width: 640px) {
    section { padding: 4rem 5%; }
    .servicos-grid { grid-template-columns: 1fr; }
    .diferenciais-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .dep-grid { grid-template-columns: 1fr; }
    nav { display: none; }
    .hamburger { display: flex; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .sobre-numeros { grid-template-columns: 1fr; }
    .processo-steps { grid-template-columns: 1fr; }
  }


  .svc-hero{background:var(--verde-escuro);padding:9rem 5% 5rem;position:relative;overflow:hidden}
  .svc-hero::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(0deg,transparent,transparent 79px,rgba(200,223,208,0.04) 79px,rgba(200,223,208,0.04) 80px),repeating-linear-gradient(90deg,transparent,transparent 79px,rgba(200,223,208,0.04) 79px,rgba(200,223,208,0.04) 80px)}
  .svc-hero-inner{position:relative;z-index:2;max-width:760px}
  .svc-tag{display:inline-flex;align-items:center;gap:.6rem;font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--dourado);font-weight:500;margin-bottom:1.2rem}
  .svc-tag::before{content:'';width:24px;height:1px;background:var(--dourado)}
  .svc-hero h1{font-family:var(--fonte-display);font-size:clamp(2rem,4vw,3.4rem);font-weight:600;color:var(--branco);line-height:1.12;margin-bottom:1.4rem;letter-spacing:-.01em}
  .svc-hero h1 em{font-style:italic;color:var(--verde-trace)}
  .svc-sub{color:rgba(255,255,255,.68);font-size:1.02rem;max-width:620px;line-height:1.8;font-weight:300;margin-bottom:2.5rem}
  .svc-btns{display:flex;gap:1rem;flex-wrap:wrap}
  .btn-orcamento{background:var(--dourado);color:var(--verde-escuro);padding:.9rem 2rem;text-decoration:none;font-weight:500;font-size:.88rem;letter-spacing:.06em;text-transform:uppercase;border-radius:2px;display:inline-block;transition:background .2s}
  .btn-orcamento:hover{background:#cbb47d}
  .btn-home{border:1px solid rgba(255,255,255,.3);color:rgba(255,255,255,.85);padding:.9rem 2rem;text-decoration:none;font-size:.88rem;letter-spacing:.06em;text-transform:uppercase;border-radius:2px;display:inline-block;transition:border-color .2s}
  .btn-home:hover{border-color:rgba(255,255,255,.7);color:#fff}
  .svc-body{background:var(--off-white);padding:5rem 5%}
  .svc-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:5rem;align-items:start}
  .svc-text h2{font-family:var(--fonte-display);font-size:clamp(1.5rem,2.5vw,2.1rem);font-weight:600;color:var(--verde-escuro);margin-bottom:1.2rem;line-height:1.2}
  .svc-text p{color:var(--cinza-texto);font-size:.96rem;line-height:1.85;margin-bottom:1rem}
  .svc-check{list-style:none;margin:1.8rem 0}
  .svc-check li{display:flex;align-items:flex-start;gap:.9rem;padding:.8rem 0;border-bottom:1px solid var(--cinza-quente);font-size:.92rem;color:var(--verde-escuro)}
  .svc-check li:last-child{border-bottom:none}
  .svc-check li::before{content:'✓';display:flex;align-items:center;justify-content:center;width:22px;height:22px;min-width:22px;background:var(--verde-escuro);color:#fff;border-radius:50%;font-size:.7rem;font-weight:700;margin-top:1px}
  .svc-card{background:#fff;border:1px solid var(--cinza-quente);border-radius:4px;padding:2rem;margin-bottom:1.5rem}
  .svc-card h3{font-family:var(--fonte-display);font-size:1.15rem;font-weight:600;color:var(--verde-escuro);margin-bottom:.8rem}
  .svc-card p{font-size:.87rem;color:var(--cinza-texto);line-height:1.72}
  .svc-cta{background:var(--verde-escuro);border-radius:4px;padding:2.5rem;text-align:center}
  .svc-cta h3{font-family:var(--fonte-display);font-size:1.45rem;font-weight:600;color:#fff;margin-bottom:.8rem}
  .svc-cta p{font-size:.87rem;color:rgba(255,255,255,.6);margin-bottom:1.8rem;line-height:1.7}
  .svc-cta .btn-wa{display:block;background:var(--dourado);color:var(--verde-escuro);padding:.9rem 1.5rem;text-decoration:none;font-size:.87rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;border-radius:2px;margin-bottom:.8rem;transition:background .2s}
  .svc-cta .btn-wa:hover{background:#cbb47d}
  .svc-cta .btn-mail{display:block;border:1px solid rgba(255,255,255,.3);color:rgba(255,255,255,.8);padding:.9rem 1.5rem;text-decoration:none;font-size:.87rem;letter-spacing:.06em;text-transform:uppercase;border-radius:2px;transition:border-color .2s}
  .svc-cta .btn-mail:hover{border-color:rgba(255,255,255,.7);color:#fff}
  .svc-specs{background:#fff;padding:4rem 5%}
  .specs-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--cinza-quente);border:1px solid var(--cinza-quente);border-radius:4px;overflow:hidden;margin-top:2.5rem}
  .spec-box{background:#fff;padding:2rem 1.5rem}
  .spec-box .sl{font-size:.73rem;letter-spacing:.15em;text-transform:uppercase;color:var(--verde-claro);font-weight:500;margin-bottom:.4rem}
  .spec-box .sv{font-family:var(--fonte-display);font-size:1.4rem;font-weight:600;color:var(--verde-escuro);margin-bottom:.3rem}
  .spec-box .sd{font-size:.81rem;color:var(--cinza-texto);line-height:1.6}
  .svc-outras{background:var(--off-white);padding:4rem 5%}
  .svc-outras h2{font-family:var(--fonte-display);font-size:1.75rem;font-weight:600;color:var(--verde-escuro);margin-bottom:2rem}
  .outras-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
  .oc{background:#fff;border:1px solid var(--cinza-quente);border-radius:4px;padding:1.5rem;text-decoration:none;display:block;transition:border-color .2s,box-shadow .2s}
  .oc:hover{border-color:var(--verde-claro);box-shadow:0 4px 16px rgba(0,0,0,.07)}
  .oc .on{font-size:.73rem;color:var(--dourado);font-weight:600;letter-spacing:.1em;margin-bottom:.5rem}
  .oc .ot{font-family:var(--fonte-display);font-size:1rem;font-weight:600;color:var(--verde-escuro);margin-bottom:.4rem}
  .oc .od{font-size:.81rem;color:var(--cinza-texto);line-height:1.6}
  .cidades-band{background:var(--verde-escuro);padding:2.5rem 5%;text-align:center}
  .cidades-band p{color:rgba(255,255,255,.55);font-size:.82rem;letter-spacing:.12em;text-transform:uppercase}
  .cidades-band p strong{color:var(--dourado)}
  .cp-section{background:#fff;border-top:1px solid var(--cinza-quente);padding:2.5rem 5%}
  .cp-section h3{font-family:var(--fonte-display);font-size:1.1rem;font-weight:600;color:var(--cinza-texto);margin-bottom:1rem;text-transform:uppercase;letter-spacing:.08em;font-size:.78rem}
  .cp-links{display:flex;flex-wrap:wrap;gap:.5rem}
  .cp-links a{display:inline-block;padding:.35rem .85rem;background:var(--off-white);border:1px solid var(--cinza-quente);border-radius:20px;text-decoration:none;font-size:.82rem;color:var(--verde-escuro);transition:background .2s,border-color .2s,color .2s}
  .cp-links a:hover{background:var(--verde-escuro);border-color:var(--verde-escuro);color:#fff}
  @media(max-width:1024px){.svc-grid{grid-template-columns:1fr;gap:3rem}.specs-grid{grid-template-columns:1fr 1fr}.outras-grid{grid-template-columns:1fr 1fr}}
  @media(max-width:640px){.specs-grid{grid-template-columns:1fr}.outras-grid{grid-template-columns:1fr}}