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

    :root {
      --nc: #2233CC;
      --nc-deep: #1428AA;
      --nc-bright: #3D52E0;
      --nc-pale: #EEF0FF;
      --ink: #0D0F1A;
      --ink-mid: #3A3D52;
      --ink-muted: #7A7E96;
      --surf: #F7F8FC;
      --white: #FFFFFF;
      --bdr: #E4E6F0;
      --gold: #F0A500;
      --wa: #25D366;
      --wa-dark: #1da851;
      --r: 14px;
      --rl: 22px;
      --rxl: 28px;
      --sh: 0 8px 32px rgba(34, 51, 204, .12);
      --shl: 0 20px 60px rgba(34, 51, 204, .18);
      --t: .22s ease;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 16px;
      color: var(--ink);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden
    }

    h1,
    h2,
    h3 {
      font-family: 'Barlow Condensed', sans-serif;
      line-height: 1.05;
      letter-spacing: -.01em
    }

    a {
      text-decoration: none;
      color: inherit
    }

    img {
      max-width: 100%;
      height: auto;
      display: block
    }

    /* ── NAV ─────────────────────────────────────────────── */
    nav {
      position: sticky;
      top: 0;
      z-index: 1060;
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--bdr)
    }

    .nav-inner {
      max-width: 1220px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100px;
      padding: 0 5vw;
      position: relative
    }

    #nav-logo {
      height: 100px;
      width: auto;
      object-fit: contain;
      transform: scale(1.15);
      transform-origin: left center;
    }

    .nav-list {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center
    }

    .nav-list a {
      font-size: .875rem;
      font-weight: 500;
      color: var(--ink-mid);
      transition: color var(--t);
      position: relative;
    }

    .nav-list a:not(.btn-wa)::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--nc);
      border-radius: 2px;
      transition: width .25s ease;
    }

    .nav-list a:not(.btn-wa):hover::after {
      width: 100%;
    }

    .nav-list a:hover {
      color: var(--nc)
    }

    /* Botão Menu Mobile */
    .menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 10px;
      line-height: 0;
    }

    .menu-btn svg {
      width: 44px;
      height: 44px;
      fill: var(--ink)
    }

    /* WhatsApp CTA button — verde */
    .btn-wa {
      background: var(--wa) !important;
      color: #fff !important;
      font-weight: 700 !important;
      padding: .5rem 1.35rem;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: background var(--t) !important
    }

    .btn-wa:hover {
      background: var(--wa-dark) !important
    }

    .btn-wa svg {
      fill: #fff;
      flex-shrink: 0
    }

    /* ── HERO ────────────────────────────────────────────── */
    .hero {
      min-height: auto;
      background: var(--nc);
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: stretch;
      padding: 0;
      position: relative;
      overflow: hidden;
    }

    /* Textura de grade tecnológica no fundo do Hero */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: 0;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -120px;
      right: 15%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(61, 82, 224, .35) 0%, transparent 70%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1.75rem 2vw 2.25rem 6vw;
      position: relative;
      z-index: 2;
    }

    /* Animações de entrada do Hero */
    .hero-anim {
      opacity: 0;
      transform: translateY(22px);
      animation: heroFadeUp .7s cubic-bezier(.16, 1, .3, 1) forwards;
    }

    .hero-anim:nth-child(1) {
      animation-delay: .1s
    }

    .hero-anim:nth-child(2) {
      animation-delay: .22s
    }

    .hero-anim:nth-child(3) {
      animation-delay: .36s
    }

    .hero-anim:nth-child(4) {
      animation-delay: .5s
    }

    .hero-anim:nth-child(5) {
      animation-delay: .62s
    }

    @keyframes heroFadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Typewriter no H1 */
    .hero h1 .tw-cursor {
      display: inline-block;
      width: 3px;
      height: .85em;
      background: var(--gold);
      margin-left: 4px;
      vertical-align: middle;
      animation: blink .85s step-end infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    #hero-logo {
      height: 70px;
      width: auto;
      margin-bottom: 1.25rem;
      object-fit: contain
    }

    .eyebrow-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .22);
      color: rgba(255, 255, 255, .88);
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .35rem .9rem;
      border-radius: 100px;
      margin-bottom: 1.2rem;
      width: fit-content;
    }

    .eyebrow-hero b {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      display: inline-block
    }

    .hero h1 {
      font-size: clamp(3rem, 5vw, 5.2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 1.2rem;
      text-transform: uppercase
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold)
    }

    .hero-desc {
      font-size: 1.02rem;
      font-weight: 300;
      color: rgba(255, 255, 255, .72);
      max-width: 430px;
      margin-bottom: 1.5rem;
      line-height: 1.75
    }

    .hbtns {
      display: flex;
      gap: .75rem;
      flex-wrap: wrap
    }

    /* Hero WhatsApp button — verde com glow */
    .btn-wa-lg {
      background: var(--wa);
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
      padding: .88rem 1.75rem;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all var(--t);
      box-shadow: 0 4px 20px rgba(37, 211, 102, .38);
      animation: glowPulse 3s ease-in-out infinite;
    }

    @keyframes glowPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .38);
      }

      50% {
        box-shadow: 0 4px 32px rgba(37, 211, 102, .65), 0 0 0 6px rgba(37, 211, 102, .1);
      }
    }

    .btn-wa-lg svg {
      fill: #fff;
      flex-shrink: 0
    }

    .btn-wa-lg:hover {
      background: var(--wa-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .55);
      animation: none;
    }

    .btn-ghost {
      border: 1.5px solid rgba(255, 255, 255, .32);
      color: #fff;
      font-weight: 600;
      font-size: .92rem;
      padding: .85rem 1.75rem;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all var(--t)
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, .09);
      border-color: rgba(255, 255, 255, .55)
    }

    .hstats {
      display: flex;
      gap: 2rem;
      margin-top: 1.75rem;
      border-top: 1px solid rgba(255, 255, 255, .14);
      padding-top: 1.5rem
    }

    .hero-stat-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1
    }

    .hero-stat-label {
      font-size: .76rem;
      color: rgba(255, 255, 255, .48);
      margin-top: 3px
    }

    /* Hero right photo */
    .hero-right {
      position: relative;
      padding: 1.75rem 4vw 2.25rem 0;
      /* Espaçamento ao redor da foto */
      display: flex;
      align-items: stretch;
    }

    .hero-photo {
      width: 100%;
      height: 100%;
      background: var(--nc-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 1.25rem;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
    }

    #hero-foto {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      z-index: 1
    }

    .photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(34, 51, 204, .35) 0%, transparent 50%);
      z-index: 2
    }

    .photo-tag {
      position: absolute;
      bottom: 1.75rem;
      left: 1.75rem;
      background: rgba(0, 0, 0, .45);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .14);
      color: #fff;
      font-size: .76rem;
      font-weight: 600;
      padding: .45rem .95rem;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 3
    }

    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #4ade80;
      flex-shrink: 0
    }

    /* ── BRAND TICKER (marcas) ────────────────────────────── */
    .ticker-wrap {
      background: var(--ink);
      padding: 1rem 0;
      overflow: hidden;
      position: relative
    }

    .ticker-wrap::before,
    .ticker-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none
    }

    .ticker-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--ink), transparent)
    }

    .ticker-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--ink), transparent)
    }

    .ticker-track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      animation: ticker 28s linear infinite
    }

    .ticker-track:hover {
      animation-play-state: paused
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .brand-item {
      display: inline-flex;
      align-items: center;
      padding: 0 2.5rem;
      border-right: 1px solid rgba(255, 255, 255, .08);
      flex-shrink: 0
    }

    .brand-item:last-child {
      border-right: none
    }

    .brand-logo {
      height: 42px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .55;
      transition: opacity var(--t);
      transform-origin: center;
    }

    .brand-logo:hover {
      opacity: 1
    }

    /* Fallback text brand se imagem não carregar */
    .brand-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .45);
      letter-spacing: .08em;
      text-transform: uppercase;
      white-space: nowrap
    }

    /* ── SEÇÕES COMUNS ────────────────────────────────────── */
    section {
      padding: 5.5rem 5vw
    }

    .wrap {
      max-width: 1220px;
      margin: 0 auto
    }

    .eyebrow {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--nc);
      display: block;
      margin-bottom: .6rem
    }

    .sec-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      color: var(--ink);
      margin-bottom: .8rem;
      text-transform: uppercase
    }

    .sec-sub {
      font-size: 1rem;
      color: var(--ink-muted);
      font-weight: 300;
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 3rem
    }

    /* ── SERVIÇOS ─────────────────────────────────────────── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem
    }

    .service-card {
      border-radius: var(--rl);
      overflow: hidden;
      border: 1px solid var(--bdr);
      transition: all .3s ease;
      background: var(--white);
      position: relative;
    }

    /* Efeito spotlight — luz que segue o cursor */
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(34, 51, 204, .07), transparent 60%);
      opacity: 0;
      transition: opacity .3s ease;
      pointer-events: none;
      z-index: 1;
      border-radius: inherit;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(34, 51, 204, .16);
      border-color: rgba(34, 51, 204, .2);
    }

    .service-photo {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--surf);
      border-bottom: 1px solid var(--bdr);
      overflow: hidden;
      position: relative
    }

    .service-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      transition: transform .4s ease
    }

    .service-card:hover .service-photo img {
      transform: scale(1.04)
    }

    .service-card-body {
      padding: 1.5rem
    }

    .service-card-number {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--nc);
      text-transform: uppercase;
      margin-bottom: .35rem
    }

    .service-card h3 {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: .45rem
    }

    .service-card p {
      font-size: .86rem;
      color: var(--ink-muted);
      font-weight: 300;
      line-height: 1.65
    }

    /* ── SOBRE ────────────────────────────────────────────── */
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center
    }

    .store-slot {
      position: relative
    }

    .store-main {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--rxl);
      overflow: hidden;
      background: var(--nc-pale);
      position: relative
    }

    #loja-foto {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0
    }

    .store-badge {
      position: absolute;
      bottom: -1.1rem;
      right: -1.1rem;
      background: var(--nc);
      color: #fff;
      padding: .95rem 1.4rem;
      border-radius: var(--rl);
      box-shadow: var(--shl);
      text-align: center;
      z-index: 2
    }

    .sb-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      line-height: 1
    }

    .sb-lbl {
      font-size: .7rem;
      opacity: .75;
      margin-top: 2px
    }

    .about-q {
      border-left: 3px solid var(--gold);
      padding-left: 1.2rem;
      font-size: .98rem;
      font-style: italic;
      color: var(--ink-mid);
      line-height: 1.8;
      margin: 1.75rem 0
    }

    .perks {
      display: flex;
      flex-direction: column;
      gap: .8rem;
      margin-top: 1.5rem
    }

    .perk-item {
      display: flex;
      align-items: center;
      gap: .8rem;
      font-size: .9rem;
      font-weight: 500;
      color: var(--ink-mid)
    }

    .perk-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--nc-pale);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .perk-icon svg {
      width: 14px;
      height: 14px;
      fill: var(--nc)
    }

    /* ── AVALIAÇÕES ───────────────────────────────────────── */
    .reviews-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      gap: 1rem;
      flex-wrap: wrap
    }

    .gscore {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--surf);
      border: 1px solid var(--bdr);
      padding: .8rem 1.4rem;
      border-radius: var(--r)
    }

    .google-badge {
      font-size: 1.8rem;
      font-weight: 800;
      color: #4285F4;
      font-family: 'Barlow Condensed', sans-serif
    }

    .google-score-number {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--ink)
    }

    .google-score-stars {
      color: var(--gold);
      font-size: .95rem
    }

    .google-score-count {
      font-size: .75rem;
      color: var(--ink-muted)
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem
    }

    .review-card {
      background: var(--surf);
      border: 1px solid var(--bdr);
      border-radius: var(--rl);
      padding: 1.75rem
    }

    .rstars {
      color: var(--gold);
      font-size: .85rem;
      letter-spacing: 2px;
      margin-bottom: .8rem
    }

    .rtxt {
      font-size: .88rem;
      color: var(--ink-mid);
      font-style: italic;
      line-height: 1.75;
      margin-bottom: 1.2rem;
      font-weight: 300
    }

    .rtxt::before {
      content: '"'
    }

    .rtxt::after {
      content: '"'
    }

    .rauth {
      display: flex;
      align-items: center;
      gap: .75rem
    }

    .review-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--nc);
      color: #fff;
      font-weight: 700;
      font-size: .8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Barlow Condensed', sans-serif
    }

    .review-name {
      font-size: .875rem;
      font-weight: 600;
      color: var(--ink)
    }

    .review-period {
      font-size: .72rem;
      color: var(--ink-muted)
    }

    /* ── FAQ ──────────────────────────────────────────────── */
    .faq-section {
      background: var(--ink)
    }

    .faq-section .sec-title {
      color: #fff
    }

    .faq-section .sec-sub {
      color: rgba(255, 255, 255, .42)
    }

    .faq-section .eyebrow {
      color: var(--gold)
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem
    }

    details {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: var(--r)
    }

    details[open] {
      background: rgba(255, 255, 255, .06)
    }

    summary {
      padding: 1.2rem 1.5rem;
      font-weight: 600;
      font-size: .88rem;
      color: rgba(255, 255, 255, .83);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      gap: .75rem
    }

    summary::-webkit-details-marker {
      display: none
    }

    summary::after {
      content: '+';
      font-size: 1.3rem;
      font-weight: 300;
      color: var(--gold);
      flex-shrink: 0
    }

    details[open] summary::after {
      content: '–'
    }

    @keyframes slideDownFaq {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    details[open] .faq-answer {
      animation: slideDownFaq 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .faq-answer {
      padding: 0 1.5rem 1.2rem;
      font-size: .85rem;
      color: rgba(255, 255, 255, .48);
      font-weight: 300;
      line-height: 1.75
    }

    /* ── LOCALIZAÇÃO ──────────────────────────────────────── */
    .location-section {
      background: var(--surf)
    }

    .location-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start
    }

    .location-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem
    }

    .location-row {
      display: flex;
      gap: 1rem;
      align-items: flex-start
    }

    .location-icon {
      width: 44px;
      height: 44px;
      background: var(--nc-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .location-icon svg {
      width: 20px;
      height: 20px;
      fill: var(--nc)
    }

    .location-label {
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--ink-muted);
      margin-bottom: 2px
    }

    .location-value {
      font-size: .93rem;
      color: var(--ink);
      font-weight: 500;
      line-height: 1.55
    }

    .location-value a {
      color: var(--nc)
    }

    .map {
      border-radius: var(--rxl);
      overflow: hidden;
      border: 1px solid var(--bdr);
      height: 380px;
      box-shadow: var(--sh)
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block
    }

    /* ── CTA BAND ─────────────────────────────────────────── */
    .cta {
      background: var(--nc);
      padding: 5rem 5vw;
      text-align: center
    }

    .cta h2 {
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: .7rem;
      text-transform: uppercase
    }

    .cta p {
      color: rgba(255, 255, 255, .68);
      margin-bottom: 2rem;
      font-size: 1rem
    }

    .cta-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap
    }

    /* CTA WhatsApp button */
    .btn-wa-cta {
      background: var(--wa);
      color: #fff;
      font-weight: 700;
      font-size: .95rem;
      padding: .88rem 2rem;
      border-radius: 100px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: all var(--t);
      box-shadow: 0 4px 20px rgba(37, 211, 102, .35)
    }

    .btn-wa-cta svg {
      fill: #fff;
      flex-shrink: 0
    }

    .btn-wa-cta:hover {
      background: var(--wa-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(37, 211, 102, .45)
    }

    /* ── FOOTER ───────────────────────────────────────────── */
    footer {
      background: #080A14;
      color: rgba(255, 255, 255, .42);
      padding: 3.5rem 5vw 2rem
    }

    .footer-inner {
      max-width: 1220px;
      margin: 0 auto
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
      margin-bottom: 1.75rem
    }

    #footer-logo {
      height: 80px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .6;
      margin-bottom: 1rem;
      transform: scale(1.15);
      transform-origin: left center;
    }

    .footer-about {
      font-size: .83rem;
      line-height: 1.7;
      max-width: 280px
    }

    .footer-heading {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      margin-bottom: .9rem
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .45rem
    }

    .flinks a {
      font-size: .83rem;
      transition: color var(--t)
    }

    .flinks a:hover {
      color: var(--gold)
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
      font-size: .76rem
    }

    .footer-bottom a {
      color: var(--gold)
    }

    /* ── WHATSAPP FLUTUANTE ───────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 1.75rem;
      right: 1.75rem;
      z-index: 1000;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: var(--wa);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, .42);
      transition: all var(--t);
      animation: wap 3s ease-in-out infinite
    }

    .wa-float:hover {
      transform: scale(1.1)
    }

    .wa-float svg {
      width: 32px;
      height: 32px;
      fill: #fff
    }

    @keyframes wap {

      0%,
      100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .42)
      }

      50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, .42), 0 0 0 14px rgba(37, 211, 102, .08)
      }
    }

    /* Botão fechar drawer — escondido no desktop */
    .drawer-close {
      display: none;
    }

    /* Overlay do drawer — invisível no desktop */
    .drawer-overlay {
      display: none;
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── RESPONSIVO ───────────────────────────────────────── */
    @media(max-width:960px) {
      section {
        padding: 4rem 5vw
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto
      }

      .hero-left {
        padding: 4rem 5vw 2rem;
        align-items: center;
        text-align: center
      }

      .hero-desc {
        margin-left: auto;
        margin-right: auto
      }

      .hbtns {
        justify-content: center
      }

      .hstats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem
      }

      .hero-right {
        position: relative;
        overflow: hidden;
        height: 40vh;
        width: 90%;
        margin: 0 auto 1.5rem;
        border-radius: 1.25rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
        display: block;
      }

      .hero-right .hero-photo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        box-shadow: none;
      }

      #servicos>.wrap>.eyebrow,
      #servicos>.wrap>.sec-title,
      #servicos>.wrap>.sec-sub {
        text-align: center;
        margin-left: auto;
        margin-right: auto
      }

      .services-grid {
        grid-template-columns: repeat(2, 1fr)
      }

      .about-wrap {
        grid-template-columns: 1fr;
        gap: 3rem
      }

      .reviews-grid {
        grid-template-columns: 1fr
      }

      .faq-grid {
        grid-template-columns: 1fr
      }

      .location-grid {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
      }

      /* Centraliza o cabeçalho de avaliações no mobile */
      .reviews-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem
      }

      /* Menu Mobile — Drawer Lateral */
      .menu-btn {
        display: block;
        z-index: 1002;
        position: relative;
      }

      /* Drawer lateral */
      .nav-list {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 85vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 5rem 1.75rem 2rem;
        box-shadow: -4px 0 30px rgba(0, 0, 0, .2);
        gap: 0;
        align-items: flex-start;
        z-index: 1050;
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
      }

      .nav-list.active {
        transform: translateX(0);
      }

      .nav-list location-info {
        width: 100%;
        border-bottom: 1px solid var(--bdr);
      }

      .nav-list li:last-child {
        border-bottom: none;
        padding-top: 1rem;
      }

      .nav-list a:not(.btn-wa) {
        padding: .9rem 0;
        display: block;
        width: 100%;
        font-size: 1rem;
        font-weight: 600;
        color: var(--ink);
      }

      .nav-list .btn-wa {
        margin-top: .25rem;
        display: inline-flex;
        width: 100%;
        justify-content: center;
        padding: .85rem;
      }

      /* Botão X fechar — flutuante dentro do drawer */
      .drawer-close {
        display: flex;
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        background: var(--surf);
        border: 1px solid var(--bdr);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        color: var(--ink);
        font-size: 1.1rem;
        z-index: 1051;
      }
    }

    @media(max-width:600px) {
      section {
        padding: 3rem 5vw
      }

      .services-grid {
        grid-template-columns: 1fr
      }

      .footer-top {
        grid-template-columns: 1fr
      }

      .hstats {
        gap: 1.25rem
      }

      .about-wrap {
        gap: 2rem
      }

      .hero-left {
        padding: 3.5rem 5vw 2rem
      }

      .hero-right {
        margin: 0 auto 1rem
      }
    }

    /* ── BRAND TICKER animation ─────────────────────────────── */
    @keyframes slide {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-50%);
        }
      }

      #brand-ticker:hover {
        animation-play-state: paused;
      }