/* ─── TOKENS ──────────────────────────────────── */
    :root {
      --green:        #25D366;
      --green-dark:   #128C7E;
      --green-btn:    #1DAB54;
      --green-btn-h:  #17954A;
      --dark:         #0D1B12;
      --surface:      #F5F7F5;
      --surface-card: #FFFFFF;
      --border:       #E2EAE4;
      --text-main:    #1A2B20;
      --text-muted:   #5A7263;
      --radius:       12px;
      --transition:   .22s ease;
    }

    /* ─── RESET ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      color: var(--text-main);
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a   { text-decoration: none; color: inherit; }
    ul  { list-style: none; }

    /* ─── UTILITIES ───────────────────────────────── */
    .container {
      width: min(1140px, 100% - 2.5rem);
      margin-inline: auto;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .5rem;
      padding: .9rem 2.2rem;
      border-radius: var(--radius);
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }
    .btn-green {
      background: var(--green-btn);
      color: #fff;
      box-shadow: 0 4px 20px rgba(29,171,84,.35);
    }
    .btn-green:hover {
      background: var(--green-btn-h);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(29,171,84,.45);
    }

    /* ─── HEADER ──────────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--dark);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-block: 1rem;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: .65rem;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      color: #fff;
      letter-spacing: .02em;
    }

    /* Logo icon — use background-image or swap for <img> inside */
    .logo-icon {
      width: 261px;
      height: 50px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .logo-icon img { width: 100%; height: 100%; object-fit: cover; }

    /* ─── HERO ────────────────────────────────────── */
    .hero {
      background: var(--dark);
      padding-block: 5rem 4rem;
      position: relative;
      overflow: hidden;
      padding-bottom: 0px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(37,211,102,.09) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: center;
    }
    .hero-badge {
      display: none;
      align-items: center;
      gap: .5rem;
      background: rgba(37,211,102,.15);
      border: 1px solid rgba(37,211,102,.3);
      color: var(--green);
      font-family: 'Sora', sans-serif;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .06em;
      padding: .4rem .9rem;
      border-radius: 999px;
      margin-bottom: 1.4rem;
    }
    /* checkmark icon inside badge via background-image */
    .hero-badge::before {
      content: '';
      width: 14px;
      height: 14px;
      background: url('icon-check.png') center/contain no-repeat;
      flex-shrink: 0;
    }
    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(1.9rem, 4vw, 3rem);
      line-height: 1.2;
      color: #fff;
      margin-bottom: 1.2rem;
    }
    .hero h1 .accent-green { color: var(--green); }
    .hero p {
      color: rgba(255,255,255,.6);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2rem;
    }

    /* CTA button icon */
    .btn-icon {
      width: 18px;
      height: 18px;
      background: url('icon-whatsapp.png') center/contain no-repeat;
      flex-shrink: 0;
    }

    /* Phone mockup */
    .hero-phone {
      position: relative;
      flex-shrink: 0;
    }
    .phone-wrap {
      width: 220px;
      height: 420px;
      border-radius: 32px;
      background: #1A1A1A center/cover no-repeat;
      /* background-image: url('phone-screenshot.png'); */
      border: 6px solid #2A2A2A;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.6);
    }
    /* swap for <img> if preferred */
    .phone-wrap img { width: 100%; height: 100%; object-fit: cover; }

    .phone-badge {
      position: absolute;
      top: 80px;
      left: -30px;
      background: var(--green);
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .78rem;
      padding: .6rem 1rem;
      border-radius: 10px;
      white-space: nowrap;
      box-shadow: 0 4px 16px rgba(37,211,102,.4);
    }

    /* ─── CTA STRIP ───────────────────────────────── */
    .cta-strip {
      background:  none;
    }
    .cta-strip .container {
      display: flex;
      justify-content: center;
    }
    .cta-strip a.btn {
      max-width: unset;
      width: 100%;
      background: var(--green-btn);
      color: #fff;
      border-radius: 8px;
      margin-top: -20px;
      z-index: 2;
    }
    .cta-strip a.btn:hover { background: var(--dark); color: #fff; }

    /* ─── DIFERENCIAIS ────────────────────────────── */
    .diferenciais {
      padding-block: 6.5rem;
      background: #fff;
    }
    .section-title {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(1.1rem, 2.5vw, 1.45rem);
      letter-spacing: .1em;
      text-transform: uppercase;
      text-align: center;
      color: var(--text-main);
      margin-bottom: 2.8rem;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }
    .card {
      background: var(--surface-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.6rem 1.4rem;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      transition: box-shadow var(--transition), transform var(--transition);
    }
    .card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,.08);
      transform: translateY(-3px);
    }
    .card-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: rgba(29,171,84,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    /* SVGs mantidos APENAS nos cards de Diferenciais */
    .card-icon svg { width: 22px; height: 22px; }
    .card-text {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: .88rem;
      line-height: 1.4;
      color: var(--text-main);
    }

    /* ─── ABOUT ───────────────────────────────────── */
    .about {
      padding-block: 5rem;
      background: #fff;
      padding-top: 0px;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-content h2 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      line-height: 1.25;
      text-transform: uppercase;
      letter-spacing: .01em;
      margin-bottom: 1.2rem;
    }
    .about-content p {
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-size: .97rem;
    }
    .about-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    /* Placeholder box — substitua por <img src="especialistas.png"> */
    .about-img {
      width: 100%;
      max-width: 380px;
      aspect-ratio: 1;
      background: center/contain no-repeat;
      /* background-image: url('especialistas.png'); */
    }
    .about-img img { width: 100%; height: 100%; object-fit: contain; }

    /* ─── FAQ ─────────────────────────────────────── */
    .faq {
      padding-block: 6.5rem;
      background: var(--surface);
    }
    /* cabeçalho: título à esquerda, texto à direita — mesma linha */
    .faq-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: end;
      margin-bottom: 2.5rem;
    }
    .faq-header small {
      font-family: 'Sora', sans-serif;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green-btn);
      display: block;
      margin-bottom: .4rem;
    }
    .faq-header h2 {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      text-transform: uppercase;
      line-height: 1.25;
    }
    .faq-desc {
      color: var(--text-muted);
      line-height: 1.7;
      font-size: .97rem;
    }
    /* lista ocupa toda a largura */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }
    .faq-item {
      background: var(--surface-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow var(--transition);
    }
    .faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem 1.4rem;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: .97rem;
      font-weight: 500;
      color: var(--text-main);
      text-align: left;
    }

    /* toggle icon — SVG inline */
    .faq-icon {
      width: 28px;
      height: 28px;
      border: 2px solid var(--green-btn);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background var(--transition);
    }
    .faq-icon svg {
      width: 14px;
      height: 14px;
      stroke: var(--green-btn);
      transition: transform var(--transition), stroke var(--transition);
      overflow: visible;
    }
    .faq-item.open .faq-icon { background: var(--green-btn); }
    .faq-item.open .faq-icon svg { stroke: #fff; transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }
    .faq-answer p {
      padding: 0 1.4rem 1.2rem;
      color: var(--text-muted);
      font-size: .92rem;
      line-height: 1.75;
    }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* ─── FOOTER ──────────────────────────────────── */
    footer {
      background: var(--green-btn);
      color: #fff;
      padding-block: 3.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.4fr;
      gap: 3rem;
    }
    .footer-brand .logo { color: #fff; margin-bottom: 1rem; }
    .footer-brand .logo span { color: #fff; }
    .footer-brand .logo img {  width:100%; max-width:192px; }
    .footer-brand .logo-icon { height: unset; }
    .footer-brand .logo-icon img{object-fit:none;}
    
    .footer-brand p {
      font-size: .88rem;
      line-height: 1.7;
      color: rgba(255,255,255,.75);
      max-width: 240px;
    }
    .footer-col h4 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: .8rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }
    .footer-col ul li + li { margin-top: .55rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,.75);
      font-size: .9rem;
      transition: color var(--transition);
    }
    .footer-col ul li a:hover { color: #fff; }

    /* Contact list — icons via background-image */
    .footer-contact li {
      display: flex;
      align-items: center;
      gap: .6rem;
      color: rgba(255,255,255,.85);
      font-size: .9rem;
      margin-bottom: .7rem;
    }
    .footer-contact li svg { width: 16px; height: 16px; flex-shrink: 0; }

    /* ─── BOTTOM BAR ──────────────────────────────── */
    .bottom-bar {
      background: #F0F2F0;
      padding-block: 1rem;
    }
    .bottom-bar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .bottom-logo {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: .9rem;
      color: var(--text-main);
    }
    .bottom-logo .logo-icon {
      width: 261px;
      height: 50px;
    }

    .add-telefone-safe{ display: none; background:url(../img/telefone-celular.png); background-repeat:no-repeat; background-position:center; position:fixed; z-index: 999999; left:10px; background-size: contain; bottom: 10px; width: 60px; height: 60px; }
.whatsapp-celular{ display: block; background:url(../img/whatsapp-celular.png); background-repeat:no-repeat; background-position:center; position:fixed; z-index: 999999; right:10px; background-size: contain; bottom: 10px; width: 60px; height: 60px; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); border-radius: 60px; }
.link-telefone{ background-color: #77b3d4; background-image: url(../img/telefone-celular.png); height: 60px; width: 60px ; background-size: contain; background-repeat: no-repeat; display: block; position: fixed; bottom: 10px; left: 10px; z-index: 999999999; -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75); border-radius: 60px; display: none; }

    /* ─── RESPONSIVE ──────────────────────────────── */
    @media (max-width: 900px) {
      .whatsapp-celular{ display: block !important; }
      .add-telefone-safe{ display: block !important; }
      .link-telefone{ display: block !important; }
      .hero-badge{ display:inline-flex; }
      .hero{ padding:2rem 4rem; padding-bottom:0px; }
      .hero-inner     { grid-template-columns: 1fr; text-align: center; }
      .hero-inner > *:last-child { display: none; }
      .hero p         { margin-inline: auto; }
      .cards-grid     { grid-template-columns: repeat(2, 1fr); }
      .about-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
      .faq-top        { grid-template-columns: 1fr; gap: 1rem; }
      .about-visual   { order: -1; }
      .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .footer-brand   { grid-column: 1 / -1; }
    }
    @media (max-width: 560px) {
      .cards-grid     { grid-template-columns: 1fr; }
      .footer-grid    { grid-template-columns: 1fr; }
      .bottom-bar .container { flex-direction: column; gap: .8rem; }
      .hero h1        { font-size: 1.8rem; }
      .whatsapp-celular{ display: block !important; }
      .add-telefone-safe{ display: block !important; }
      .link-telefone{ display: block !important; }
    }