:root {
    --orange: #D4532A;
    --navy: #2C3561;
    --white: #FFFFFF;
    --off-white: #FAF9F7;
    --gray: #6B6B6B;
    --light-gray: #F2F0ED;
    --text: #1A1A1A;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6vw;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-logo span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--navy); letter-spacing: -0.02em;
  }
  nav ul { list-style: none; display: flex; gap: 32px; }
  nav ul a {
    text-decoration: none; font-size: 1rem; font-weight: 500;
    color: var(--gray); transition: color .2s;
  }
  nav ul a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange); color: #fff !important;
    padding: 10px 22px; border-radius: 50px;
    font-weight: 600 !important; font-size: 1.05rem !important;
    transition: opacity .2s !important;
  }
  .nav-cta:hover { opacity: .85; }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 6vw 80px;
    position: relative; overflow: hidden;
    background: var(--off-white);
  }
  .hero::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,83,42,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title visual"
      "body  visual";
    column-gap: 80px; align-items: center;
  }
  .hero-title { grid-area: title; align-self: end; padding-bottom: 28px; }
  .hero-body  { grid-area: body;  align-self: start; }
  .hero-visual { grid-area: visual; justify-self: end; width: min(100%, 580px); position: relative; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,83,42,0.1); color: var(--orange);
    font-size: 1.05rem; font-weight: 600;
    letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
  }
  .hero-tag span { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
  .hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 800; line-height: 1.1;
    color: var(--navy); letter-spacing: -0.03em; margin-bottom: 20px;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero p {
    font-size: 1.15rem; color: var(--gray);
    line-height: 1.7; max-width: 420px; margin-bottom: 36px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff;
    padding: 16px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1.05rem; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(212,83,42,0.3);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,83,42,0.4); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid var(--navy); color: var(--navy);
    padding: 16px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1.05rem; text-decoration: none;
    transition: background .2s, color .2s;
  }
  .btn-secondary:hover { background: var(--navy); color: #fff; }
  .hero-stats {
    display: flex; gap: 32px; margin-top: 44px;
    padding-top: 44px; border-top: 1px solid rgba(0,0,0,0.08);
  }
  .stat-item { white-space: nowrap; flex-shrink: 0; }
  .stat-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem; font-weight: 800; color: var(--orange);
    white-space: nowrap;
  }
  .stat-item p { font-size: 1.05rem; color: var(--gray); margin-top: 2px; white-space: nowrap; }
  .hero-visual {
    width: min(100%, 580px);
    justify-self: end;
    position: relative;
  }
  .photo-card {
    border-radius: 24px; overflow: hidden;
    display: block; position: relative;
    background: #fff;
    box-shadow: 0 18px 48px rgba(44,53,97,0.14);
    line-height: 0;
  }
  .photo-card img,
  .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .photo-card-main { aspect-ratio: 3 / 4; }
  .badge-float {
    position: absolute; bottom: 18px; right: 18px;
    background: var(--orange); color: #fff;
    border-radius: 50px; padding: 10px 18px;
    font-size: 1.05rem; font-weight: 600;
    box-shadow: 0 4px 16px rgba(212,83,42,0.3); white-space: nowrap;
  }

  /* SERVIÇOS */
  .services { padding: 60px 6vw; background: var(--white); }
  .section-label {
    text-align: center; font-size: 1.05rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 12px;
  }
  .section-title {
    text-align: center; font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--navy);
    letter-spacing: -0.02em; margin-bottom: 12px;
  }
  .section-sub {
    text-align: center; color: var(--gray);
    font-size: 1.1rem; max-width: 460px;
    margin: 0 auto 60px; line-height: 1.65;
  }
  .srv-groups { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 52px; }
  .srv-group-header {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  }
  .group-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: #fff;
    padding: 8px 20px 8px 14px; border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600; white-space: nowrap;
  }
  .group-pill span { font-size: 1rem; }
  .srv-divider { flex: 1; height: 1px; background: rgba(0,0,0,0.08); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .srv-card {
    background: var(--off-white); border-radius: 16px;
    padding: 22px 18px;
    transition: transform .25s, box-shadow .25s;
    border: 1.5px solid transparent;
  }
  .srv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.08);
    border-color: rgba(212,83,42,0.18);
  }
  .srv-icon {
    width: 44px; height: 44px; border-radius: 11px;
    background: rgba(212,83,42,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 14px;
  }
  .srv-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 600;
    color: var(--navy); margin-bottom: 6px;
  }
  .srv-card p { font-size: 1.05rem; color: var(--gray); line-height: 1.55; }

  /* GALLERY */
  .gallery { padding: 60px 6vw; background: var(--navy); }
  .gallery .section-label { color: rgba(255,255,255,0.45); }
  .gallery .section-title { color: #fff; }
  .gallery .section-sub { color: rgba(255,255,255,0.5); }
  .gallery-grid {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  }
  .g-item {
    border-radius: 18px; aspect-ratio: 3 / 4;
    position: relative; overflow: hidden;
    cursor: pointer; transition: transform .3s, filter .3s;
    background: rgba(20,24,46,0.75);
    box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  }
  .g-item:hover { transform: scale(1.03); }
  .g-item:hover img { transform: scale(1.06) translateZ(0); filter: brightness(1.05); }
  .g-item img {
    transform: scale(1.02) translateZ(0);
    transform-origin: center;
    backface-visibility: hidden;
    will-change: transform;
    transition: transform .35s ease, filter .35s ease;
  }
  .g-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
    color: #fff; font-size: 1rem; font-weight: 600;
    opacity: 0; transition: opacity .25s;
  }
  .g-item:hover .g-label { opacity: 1; }

  /* DEPOIMENTOS */
  .testimonials { padding: 100px 6vw 72px; background: var(--off-white); }
  .testi-grid {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .testi-card {
    background: #fff; border-radius: 18px; padding: 28px 24px;
    border: 1.5px solid rgba(0,0,0,0.06); transition: box-shadow .25s;
  }
  .testi-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
  .stars { color: var(--orange); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
  .testi-card p {
    font-size: 1rem; color: var(--gray);
    line-height: 1.65; margin-bottom: 20px; font-style: italic;
  }
  .testi-author { display: flex; align-items: center; gap: 12px; }
  .avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(212,83,42,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .author-info strong { display: block; font-size: 1rem; color: var(--navy); }
  .author-info span { font-size: 1.05rem; color: var(--gray); }

  /* CONTACT — WhatsApp only */
  .contact { padding: 72px 6vw 100px; background: var(--white); }
  .contact-box { max-width: 620px; margin: 0 auto; text-align: center; }
  .contact-box h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--navy);
    letter-spacing: -0.02em; margin-bottom: 16px;
  }
  .contact-box > p {
    color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 36px;
  }
  .wa-card {
    background: var(--off-white); border-radius: 24px;
    padding: 44px 48px;
    border: 1.5px solid rgba(0,0,0,0.07);
    display: flex; flex-direction: column; align-items: center; gap: 22px;
  }
  .wa-icon-wrap {
    width: 72px; height: 72px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  }
  .wa-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: var(--navy);
  }
  .wa-desc { font-size: 1.05rem; color: var(--gray); line-height: 1.6; text-align: center; }
  .wa-badges {
    display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  }
  .wa-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fff; border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 50px; padding: 8px 18px;
    font-size: 1.05rem; font-weight: 500; color: var(--text);
  }
  .wa-main-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: #fff;
    padding: 18px 44px; border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem; font-weight: 700; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  }
  .wa-main-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
  .wa-note { font-size: 1.05rem; color: var(--gray); }

  /* LIGHTBOX */
  .lb-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.92);
    align-items: center; justify-content: center;
    padding: 20px;
  }
  .lb-overlay.open { display: flex; }
  .lb-img-wrap {
    max-width: min(90vw, 900px);
    max-height: 90vh;
    display: flex; align-items: center; justify-content: center;
  }
  #lb-img {
    max-width: 100%; max-height: 90vh;
    object-fit: contain; border-radius: 8px;
    display: block;
    transition: opacity .2s ease;
  }
  #lb-img.loading { opacity: 0; }
  .lb-close {
    position: fixed; top: 16px; right: 20px;
    background: rgba(255,255,255,0.12); border: none;
    color: #fff; font-size: 1.6rem; line-height: 1;
    width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    z-index: 10;
  }
  .lb-close:hover { background: rgba(255,255,255,0.25); }
  .lb-nav {
    position: fixed; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none;
    color: #fff; font-size: 3rem; line-height: 1;
    width: 52px; height: 52px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
    user-select: none; z-index: 10;
  }
  .lb-nav:hover { background: rgba(255,255,255,0.22); }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  @media (max-width: 768px) {
    .lb-nav { width: 40px; height: 40px; font-size: 2.2rem; }
    .lb-prev { left: 6px; }
    .lb-next { right: 6px; }
  }

  /* FOOTER */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.5);
    text-align: center; padding: 32px 6vw; font-size: 1.05rem;
  }
  footer strong { color: rgba(255,255,255,0.9); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: translateY(-5px) scale(1.04); filter: drop-shadow(0 6px 10px rgba(212,83,42,0.22)); }
  }
  .hero-tag { animation: fadeUp .35s .05s ease both; }
  .hero h1  { animation: fadeUp .35s .10s ease both; }
  .hero p   { animation: fadeUp .35s .15s ease both; }
  .hero-btns  { animation: fadeUp .35s .18s ease both; }
  .hero-stats { animation: fadeUp .35s .22s ease both; }
  .hero-visual { animation: fadeUp .4s .15s ease both; }

  /* HAMBURGER */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
  }
  .nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }
  nav.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Nav scrolled state */
  nav.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  /* ─── TABLET ─── */
  @media (max-width: 1000px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
    .testi-grid    { grid-template-columns: 1fr 1fr; }
  }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {

    /* NAV */
    nav { padding: 14px 5vw; }
    .nav-logo img { height: 38px; animation: logoFloat 3.5s ease-in-out infinite; will-change: transform; }
    .nav-hamburger { display: flex; }
    nav ul {
      display: none; position: fixed;
      top: 67px; left: 0; right: 0;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column; align-items: stretch;
      padding: 8px 0 16px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      z-index: 99;
    }
    nav.open ul { display: flex; }
    nav ul li { width: 100%; }
    nav ul a { display: block; padding: 13px 5vw; font-size: 1rem; }
    .nav-cta {
      margin: 6px 5vw 0;
      display: block; text-align: center;
      border-radius: 50px;
      padding: 12px 5vw !important;
    }

    /* ── HERO ── */
    .hero { padding: 0; min-height: unset; }
    .hero::before { display: none; }
    .hero-inner {
      display: flex; flex-direction: column;
      max-width: none; margin: 0; gap: 0; padding: 0;
    }

    /* 1 · Título */
    .hero-title { padding: 82px 5vw 16px; background: var(--off-white); }
    .hero-tag {
      font-size: 0.65rem;
      letter-spacing: 0.06em;
      padding: 5px 12px;
      margin-bottom: 14px;
    }
    .hero h1 { font-size: clamp(1.9rem, 7vw, 2.4rem); margin-bottom: 0; }

    /* 2 · Foto — fade off-white no topo */
    .hero-visual { width: 100%; justify-self: unset; position: relative; }
    .hero-visual::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, var(--off-white) 0%, transparent 100%);
      z-index: 1; pointer-events: none;
    }
    .photo-card { border-radius: 0; box-shadow: none; }
    .photo-card-main { aspect-ratio: 4/5; }
    .badge-float { display: none; }

    /* 3 · Corpo */
    .hero-body { padding: 20px 5vw 36px; background: var(--off-white); }
    .hero p { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; max-width: 100%; }
    .hero-btns { gap: 10px; flex-direction: column; }
    .btn-primary, .btn-secondary {
      width: 100%; justify-content: center;
      padding: 15px 20px; font-size: 1rem;
    }
    .hero-stats {
      margin-top: 24px; padding-top: 24px;
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 0; border-top: 1px solid rgba(0,0,0,0.08);
    }
    .stat-item { white-space: normal; flex-shrink: 1; min-width: 0; text-align: center; }
    .stat-item h3 { font-size: 1.6rem; white-space: nowrap; }
    .stat-item p { font-size: 0.78rem; white-space: normal; line-height: 1.3; margin-top: 2px; }

    /* ── SERVIÇOS ── */
    .services { padding: 44px 5vw; }
    .section-label { font-size: 0.75rem; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2rem); text-wrap: balance; }
    .section-sub { font-size: 0.95rem; margin-bottom: 28px; }
    .srv-groups { gap: 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .srv-card { padding: 16px 14px; }
    .srv-icon { width: 38px; height: 38px; font-size: 1.1rem; margin-bottom: 10px; }
    .srv-card h4 { font-size: 0.9rem; }
    .srv-card p { font-size: 0.85rem; }
    .group-pill { font-size: 0.85rem; padding: 6px 14px 6px 10px; }

    /* ── GALERIA ── */
    .gallery { padding: 44px 5vw; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }

    /* ── DEPOIMENTOS ── */
    .testimonials { padding: 44px 5vw; }
    .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .testi-card { padding: 22px 18px; }

    /* ── CONTATO ── */
    .contact { padding: 44px 5vw; }
    .contact-box h2 { font-size: 1.6rem; text-wrap: balance; }
    .contact-box > p { font-size: 0.95rem; margin-bottom: 24px; }
    .wa-card { padding: 24px 16px; gap: 16px; border-radius: 18px; }
    .wa-card h3 { font-size: 1.2rem; text-align: center; }
    .wa-desc { font-size: 0.9rem; }
    .wa-badges { gap: 8px; }
    .wa-badge { font-size: 0.85rem; padding: 6px 12px; }
    .wa-main-btn { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
    .wa-note { font-size: 0.82rem; }

    /* ── FOOTER ── */
    footer { font-size: 0.88rem; padding: 24px 5vw; }
  }

  /* ─── TELAS MUITO PEQUENAS ─── */
  @media (max-width: 380px) {
    .hero h1 { font-size: 1.75rem; }
    .stat-item h3 { font-size: 1.4rem; }
    .services-grid { grid-template-columns: 1fr; }
  }
