:root {
      --cream: #FAF6F0;
      --cream-dark: #F0E8D8;
      --green: #1E3A2F;
      --green-mid: #2C5440;
      --green-light: #4A7C63;
      --amber: #D4893A;
      --amber-light: #E8A855;
      --ink: #1C1915;
      --ink-soft: #4A4540;
      --white: #FFFFFF;
      --radius: 20px;
      --radius-sm: 12px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250, 246, 240, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(30,58,47,0.08);
      transition: box-shadow .3s;
    }

    nav.scrolled { box-shadow: 0 4px 24px rgba(30,58,47,0.10); }

    .nav-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--green);
      letter-spacing: -0.02em;
    }
    .nav-logo span { color: var(--amber); }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--ink-soft);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--green); }

    .nav-cta {
      background: var(--green);
      color: var(--white) !important;
      padding: 10px 22px;
      border-radius: 100px;
      font-weight: 600 !important;
      font-size: 0.875rem !important;
      transition: background .2s, transform .2s !important;
    }
    .nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--green); border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212,137,58,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,58,47,0.07) 0%, transparent 60%);
    }

    .hero-paw {
      position: absolute;
      font-size: 160px;
      opacity: 0.04;
      right: -20px;
      bottom: 60px;
      transform: rotate(-15deg);
      pointer-events: none;
    }
    .hero-paw2 {
      position: absolute;
      font-size: 80px;
      opacity: 0.05;
      left: 80px;
      top: 120px;
      transform: rotate(20deg);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(30,58,47,0.08);
      color: var(--green);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 24px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      animation: fadeUp .6s ease both;
    }

    .hero-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--green);
      margin-bottom: 20px;
      animation: fadeUp .6s .1s ease both;
    }

    .hero-title em {
      font-style: italic;
      color: var(--amber);
    }

    .hero-sub {
      font-size: 1.1rem;
      line-height: 1.65;
      color: var(--ink-soft);
      max-width: 460px;
      margin-bottom: 36px;
      font-weight: 400;
      animation: fadeUp .6s .2s ease both;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .6s .3s ease both;
    }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 8px 32px rgba(37,211,102,0.30);
    }
    .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.40); }

    .btn-ig {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 2px solid var(--green);
      color: var(--green);
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 1rem;
      transition: all .2s;
    }
    .btn-ig:hover { background: var(--green); color: white; transform: translateY(-3px); }

    .hero-stats {
      display: flex;
      gap: 28px;
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(30,58,47,0.12);
      animation: fadeUp .6s .4s ease both;
    }

    .stat-item { display: flex; flex-direction: column; }
    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }
    .stat-num span { color: var(--amber); }
    .stat-label {
      font-size: 0.78rem;
      color: var(--ink-soft);
      font-weight: 500;
      margin-top: 4px;
    }

    /* Hero visual side */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      animation: fadeLeft .8s .2s ease both;
    }

    .hero-card {
      background: var(--white);
      border-radius: 32px;
      padding: 40px;
      box-shadow: 0 24px 80px rgba(30,58,47,0.12);
      text-align: center;
      position: relative;
      max-width: 380px;
      width: 100%;
    }

    .hero-logo-area {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: var(--cream);
      margin: 0 auto 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      border: 4px solid var(--cream-dark);
      overflow: hidden;
    }

    .hero-logo-area img {
      width: 65%;
      height: 65%;
      object-fit: contain;
    }

    .hero-name {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 6px;
    }

    .hero-role {
      font-size: 0.9rem;
      color: var(--ink-soft);
      font-weight: 500;
      margin-bottom: 20px;
    }

    .hero-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 20px;
    }

    .tag {
      background: var(--cream-dark);
      color: var(--green);
      font-size: 0.75rem;
      font-weight: 600;
      padding: 5px 12px;
      border-radius: 100px;
    }

    .hero-cert {
      background: var(--cream);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      text-align: left;
    }
    .cert-icon { font-size: 1.2rem; flex-shrink: 0; }
    .cert-text { font-size: 0.78rem; color: var(--ink-soft); font-weight: 500; line-height: 1.4; }
    .cert-text strong { display: block; color: var(--green); font-size: 0.82rem; }

    .hero-card-badge {
      position: absolute;
      top: -16px;
      right: 24px;
      background: var(--amber);
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 100px;
      letter-spacing: 0.03em;
    }

    /* ── WAVE ── */
    .wave { display: block; width: 100%; line-height: 0; }

    /* ── DIFERENCIAIS ── */
    #diferenciais {
      background: var(--green);
      padding: 80px 40px;
      position: relative;
    }

    .section-inner { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--amber);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.1;
      margin-bottom: 48px;
    }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .diff-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: var(--radius);
      padding: 32px 28px;
      transition: background .3s, transform .3s;
    }

    .diff-card:hover {
      background: rgba(255,255,255,0.09);
      transform: translateY(-4px);
    }

    .diff-icon {
      font-size: 2.2rem;
      margin-bottom: 16px;
      display: block;
    }

    .diff-title {
      font-family: 'Fraunces', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }

    .diff-text {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
    }

    /* ── SOBRE ── */
    #sobre {
      padding: 100px 40px;
      background: var(--cream);
    }

    .sobre-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .sobre-visual {
      position: relative;
    }

    .sobre-photo {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--cream-dark);
      border-radius: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }

    .sobre-photo-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: var(--green-light);
      opacity: 0.6;
    }

    .sobre-photo-placeholder span { font-size: 0.85rem; font-weight: 500; }

    .sobre-badge-float {
      position: absolute;
      bottom: 28px;
      right: -20px;
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      box-shadow: 0 12px 40px rgba(30,58,47,0.15);
      min-width: 180px;
    }

    .sobre-badge-float .badge-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
    }
    .sobre-badge-float .badge-label {
      font-size: 0.78rem;
      color: var(--ink-soft);
      font-weight: 500;
      margin-top: 4px;
    }

    .sobre-content .section-title { color: var(--green); }
    .sobre-content .section-eyebrow { color: var(--amber); }

    .sobre-text {
      font-size: 1rem;
      line-height: 1.75;
      color: var(--ink-soft);
      margin-bottom: 32px;
    }

    .certs-grid {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }

    .cert-row {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--cream-dark);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
    }

    .cert-row-icon { font-size: 1.1rem; flex-shrink: 0; }
    .cert-row-name {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--green);
    }
    .cert-row-sub {
      font-size: 0.78rem;
      color: var(--ink-soft);
    }

    /* ── SERVIÇOS ── */
    #servicos {
      background: var(--cream-dark);
      padding: 100px 40px;
    }

    .servicos-inner { max-width: 1200px; margin: 0 auto; }
    .servicos-header { text-align: center; margin-bottom: 56px; }
    .servicos-header .section-title { color: var(--green); }

    .servicos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .servico-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 40px 32px;
      position: relative;
      transition: transform .3s, box-shadow .3s;
      border: 2px solid transparent;
    }

    .servico-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(30,58,47,0.12);
      border-color: var(--amber);
    }

    .servico-card.featured {
      background: var(--green);
      color: white;
      border-color: var(--green);
    }

    .servico-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
    }

    .servico-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      background: var(--cream-dark);
    }

    .servico-card.featured .servico-icon { background: rgba(255,255,255,0.15); }

    .servico-featured-tag {
      background: var(--amber);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .servico-title {
      font-family: 'Fraunces', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 12px;
    }

    .servico-card.featured .servico-title { color: white; }

    .servico-text {
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--ink-soft);
      margin-bottom: 24px;
    }

    .servico-card.featured .servico-text { color: rgba(255,255,255,0.7); }

    .servico-items {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .servico-items li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--ink-soft);
      font-weight: 500;
    }

    .servico-card.featured .servico-items li { color: rgba(255,255,255,0.8); }

    .servico-items li::before {
      content: '✓';
      width: 20px;
      height: 20px;
      background: var(--cream-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      font-weight: 800;
      color: var(--green);
      flex-shrink: 0;
      line-height: 20px;
      text-align: center;
    }

    .servico-card.featured .servico-items li::before {
      background: rgba(255,255,255,0.2);
      color: white;
    }

    /* ── COMO FUNCIONA ── */
    #como-funciona {
      background: var(--cream);
      padding: 100px 40px;
    }

    .cf-inner { max-width: 1200px; margin: 0 auto; }
    .cf-header { text-align: center; margin-bottom: 64px; }
    .cf-header .section-title { color: var(--green); }

    .cf-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .cf-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(12.5% + 16px);
      right: calc(12.5% + 16px);
      height: 2px;
      background: linear-gradient(90deg, var(--amber), var(--green));
      z-index: 0;
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }

    .step-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--white);
      border: 3px solid var(--amber);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 900;
      color: var(--amber);
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(212,137,58,0.2);
    }

    .step-title {
      font-family: 'Fraunces', serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 8px;
    }

    .step-text {
      font-size: 0.85rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* ── RESULTADOS ── */
    #resultados {
      background: var(--green);
      padding: 100px 40px;
    }

    .resultados-inner { max-width: 1200px; margin: 0 auto; }
    .resultados-header { margin-bottom: 48px; }
    .resultados-header .section-title { color: var(--white); }

    .resultados-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .result-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform .3s;
      cursor: pointer;
    }

    .result-card:hover { transform: scale(1.02); }

    .result-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.4);
    }

    .result-placeholder span { font-size: 2.5rem; }
    .result-placeholder p { font-size: 0.82rem; font-weight: 500; }

    .result-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(30,58,47,0.8) 0%, transparent 50%);
      display: flex;
      align-items: flex-end;
      padding: 16px;
      opacity: 0;
      transition: opacity .3s;
    }

    .result-card:hover .result-overlay { opacity: 1; }
    .result-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }

    .resultados-cta {
      margin-top: 40px;
      text-align: center;
    }

    /* ── DEPOIMENTOS ── */
    #depoimentos {
      background: var(--cream-dark);
      padding: 100px 40px;
    }

    .dep-inner { max-width: 1200px; margin: 0 auto; }
    .dep-header { text-align: center; margin-bottom: 56px; }
    .dep-header .section-title { color: var(--green); }

    .dep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .dep-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 28px;
      position: relative;
    }

    .dep-stars { color: var(--amber); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }

    .dep-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--ink-soft);
      margin-bottom: 24px;
      font-style: italic;
    }

    .dep-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dep-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .dep-name {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--green);
    }

    .dep-dog {
      font-size: 0.78rem;
      color: var(--ink-soft);
    }

    .dep-quote {
      position: absolute;
      top: 24px;
      right: 28px;
      font-size: 3rem;
      color: var(--cream-dark);
      font-family: 'Fraunces', serif;
      line-height: 1;
    }

    /* ── FAQ ── */
    #faq {
      background: var(--cream);
      padding: 100px 40px;
    }

    .faq-inner {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-header { text-align: center; margin-bottom: 48px; }
    .faq-header .section-title { color: var(--green); }

    .faq-list { display: flex; flex-direction: column; gap: 12px; }

    .faq-item {
      background: var(--white);
      border-radius: var(--radius-sm);
      border: 1px solid var(--cream-dark);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      padding: 22px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--green);
      transition: color .2s;
    }

    .faq-q:hover { color: var(--amber); }

    .faq-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: transform .3s, background .3s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(45deg);
      background: var(--amber);
      color: white;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease;
    }

    .faq-item.open .faq-a { max-height: 400px; }

    .faq-a-inner {
      padding: 0 24px 22px;
      font-size: 0.92rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    /* ── CTA FINAL ── */
    #cta-final {
      background: var(--amber);
      padding: 100px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-final::before {
      content: '🐾';
      position: absolute;
      font-size: 200px;
      opacity: 0.08;
      top: -30px;
      left: -30px;
      transform: rotate(-20deg);
    }

    #cta-final::after {
      content: '🐾';
      position: absolute;
      font-size: 160px;
      opacity: 0.08;
      bottom: -20px;
      right: -20px;
      transform: rotate(15deg);
    }

    .cta-final-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }

    .cta-final-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 900;
      color: white;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .cta-final-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .cta-final-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-wa-final {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: white;
      color: #128C7E;
      text-decoration: none;
      padding: 16px 36px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 1rem;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    .btn-wa-final:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }

    .btn-ig-final {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 2px solid rgba(255,255,255,0.6);
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 1rem;
      transition: all .2s;
    }
    .btn-ig-final:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

    /* ── FOOTER ── */
    footer {
      background: var(--ink);
      padding: 48px 40px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }

    .footer-logo {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: white;
    }
    .footer-logo span { color: var(--amber); }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }
    .footer-links a {
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--amber); }

    .footer-copy {
      color: rgba(255,255,255,0.35);
      font-size: 0.82rem;
    }

    /* ── ANIMAÇÕES ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(40px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── BTN WHATSAPP FLUTUANTE ── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37,211,102,0.45);
      text-decoration: none;
      z-index: 200;
      transition: transform .2s, box-shadow .2s;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.55); }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
      .servicos-grid { grid-template-columns: 1fr 1fr; }
      .dep-grid { grid-template-columns: 1fr 1fr; }
      .cf-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
      .cf-steps::before { display: none; }
      .resultados-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      nav { padding: 16px 20px; }
      .nav-links { 
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250, 246, 240, 0.98);
        backdrop-filter: blur(12px);
        padding: 20px;
        box-shadow: 0 10px 24px rgba(30,58,47,0.15);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
      }
      .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
      }
      .hamburger { display: flex; }

      #hero { padding: 100px 20px 60px; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: -1; }
      .hero-card { max-width: 100%; }
      .hero-stats { gap: 20px; }

      #diferenciais { padding: 60px 20px; }
      .diff-grid { grid-template-columns: 1fr; }

      #sobre { padding: 60px 20px; }
      .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
      .sobre-badge-float { right: 0; bottom: -20px; }

      #servicos { padding: 60px 20px; }
      .servicos-grid { grid-template-columns: 1fr; }

      #como-funciona { padding: 60px 20px; }
      .cf-steps { grid-template-columns: 1fr 1fr; }

      #resultados { padding: 60px 20px; }
      .resultados-grid { grid-template-columns: 1fr 1fr; }

      #depoimentos { padding: 60px 20px; }
      .dep-grid { grid-template-columns: 1fr; }

      #faq { padding: 60px 20px; }
      #cta-final { padding: 60px 20px; }

      footer { padding: 36px 20px; }
      .footer-inner { flex-direction: column; text-align: center; }

      .wa-float { bottom: 20px; right: 20px; }
    }

.nav-logo img, .footer-logo img { height: 48px; width: auto; display: block; border-radius: 8px; }
