/* ===== Lubie — estilos compartilhados (extraído de index.html) ===== */
/* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Nunito', system-ui, sans-serif;
      color: #3a2e28;
      background: #fff;
      line-height: 1.7;
      font-size: 16px;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ── BRAND TOKENS ── */
    :root {
      --marrom:      #545241;
      --marrom-esc:  #3d3b30;
      --marrom-med:  #6b6650;
      --tan:         #b78a6b;
      --salmon:      #8a5230;
      --blush:       #edd5c0;
      --creme:       #faf2ec;
      --creme-med:   #e8ccb4;
      --branco:      #ffffff;
      --texto:       #3a2e28;
      --texto-light: #7a6b60;
      --sombra:      0 4px 24px rgba(84,82,65,.10);
      --sombra-h:    0 8px 36px rgba(84,82,65,.18);
      --radius:      14px;
      --radius-lg:   22px;
    }

    /* ── UTIL ── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
    .section   { padding: 88px 0; }
    .section--creme { background: var(--creme); }
    .section--blush { background: var(--blush); }
    .section--dark  { background: var(--marrom); color: #fff; }
    .section--marrom-esc { background: var(--marrom-esc); color: #fff; }

    .pill {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--salmon);
      background: var(--creme);
      border: 1px solid var(--blush);
      padding: 5px 14px; border-radius: 50px;
      margin-bottom: 16px;
    }
    .pill--light { color: var(--creme); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }

    .sec-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.75rem, 3.8vw, 2.55rem);
      font-weight: 800; color: var(--marrom);
      line-height: 1.18; margin-bottom: 16px;
    }
    .sec-title--white { color: #fff; }
    .sec-sub {
      font-size: 1.05rem; color: var(--texto-light);
      max-width: 560px; margin-bottom: 44px; line-height: 1.75;
    }
    .sec-sub--white { color: rgba(255,255,255,.78); }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 30px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: .88rem; font-weight: 700;
      cursor: pointer; transition: all .22s;
      border: 2px solid transparent;
      letter-spacing: .02em;
    }
    .btn-primary { background: var(--salmon); color: #fff; box-shadow: 0 4px 18px rgba(138,82,48,.32); }
    .btn-primary:hover { background: #703e22; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(138,82,48,.42); }
    .btn-outline { background: transparent; color: var(--marrom); border-color: var(--marrom); }
    .btn-outline:hover { background: var(--marrom); color: #fff; }
    .btn-creme { background: var(--creme); color: var(--marrom); }
    .btn-creme:hover { background: #fff; transform: translateY(-2px); }
    .btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
    .btn-outline-white:hover { background: rgba(255,255,255,.12); }

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

    /* ── NAVBAR ── */
    .nav {
      position: sticky; top: 0; z-index: 900;
      background: rgba(255,255,255,.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(84,82,65,.08);
      transition: box-shadow .3s;
    }
    .nav.scrolled { box-shadow: var(--sombra); }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 96px;
    }
    .nav__logo img { height: 58px; width: auto; }
    .nav__links { display: flex; gap: 30px; align-items: center; }
    .nav__links a {
      font-family: 'Montserrat', sans-serif;
      font-size: .82rem; font-weight: 600;
      color: var(--marrom-med); letter-spacing: .03em;
      transition: color .2s;
    }
    .nav__links a:hover { color: var(--salmon); }
    .nav__phone {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.9rem; font-weight: 900;
      color: #fff;
      letter-spacing: .01em;
      background: var(--salmon);
      padding: 10px 32px;
      border-radius: 50px;
      box-shadow: 0 6px 22px rgba(138,82,48,.45);
      transition: background .2s, transform .2s, box-shadow .2s;
      line-height: 1.15;
      white-space: nowrap;
    }
    .nav__phone:hover { background: #703e22; transform: scale(1.02); box-shadow: 0 8px 28px rgba(138,82,48,.55); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 22px; height: 2px; background: var(--marrom); border-radius: 2px; transition: all .3s; }

    /* ── HERO ── */
    .hero {
      background: var(--creme);
      display: flex; align-items: center;
      padding-top: 24px;
      overflow: hidden;
      position: relative;
    }
    /* decorative wave */
    .hero::after { display: none; }
    .hero__inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 48px; align-items: center;
      padding: 36px 0 56px;
    }
    .hero__badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; letter-spacing: .09em;
      text-transform: uppercase; color: var(--salmon);
      background: var(--blush); border-radius: 50px;
      padding: 5px 14px; margin-bottom: 20px;
    }
    .hero__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 800; color: var(--marrom);
      line-height: 1.13; margin-bottom: 22px;
    }
    .hero__title em { color: var(--salmon); font-style: normal; }
    .hero__sub {
      font-size: 1.08rem; color: var(--texto-light);
      max-width: 500px; margin-bottom: 36px; line-height: 1.8;
    }
    .hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
    .hero__google {
      display: inline-flex; align-items: center; gap: 12px;
      background: #fff; border: 1px solid var(--blush);
      padding: 10px 18px; border-radius: 50px;
      box-shadow: 0 2px 10px rgba(84,82,65,.06);
      margin-bottom: 28px;
      transition: transform .2s, box-shadow .2s;
    }
    .hero__google:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(84,82,65,.14); }
    .hero__google-logo { display: inline-flex; align-items: center; }
    .hero__google-text {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: .85rem; color: var(--marrom);
      font-weight: 600;
    }
    .hero__google-text strong { font-weight: 800; font-size: 1rem; }
    .hero__google-stars { color: #f4b400; letter-spacing: 1px; font-size: .9rem; }
    .hero__google-count { color: var(--texto-light); font-weight: 500; font-size: .8rem; }
    .hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
    .hero__trust-item {
      display: flex; align-items: center; gap: 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem; font-weight: 600; color: var(--marrom-med);
    }
    .hero__trust-item::before { content:'✓'; color: var(--salmon); font-weight: 800; }

    .hero__photo-wrap { position: relative; }
    .hero__photo {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      object-fit: cover;
      object-position: center top;
      box-shadow: var(--sombra-h);
    }
    .hero__float-card {
      position: absolute; bottom: 28px; left: -24px;
      background: #fff;
      border-radius: var(--radius);
      padding: 18px 22px;
      box-shadow: var(--sombra-h);
      min-width: 190px;
    }
    .hero__float-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: .95rem;
      color: var(--marrom); margin-bottom: 2px;
    }
    .hero__float-cred { font-size: .78rem; color: var(--texto-light); }
    .hero__float-stars { color: var(--salmon); font-size: .9rem; margin-top: 4px; }

    /* ── REDES SOCIAIS CTA (após formulário) ── */
    .redes-cta {
      background: var(--creme);
      padding: 46px 0;
      border-top: 1px solid var(--blush);
    }
    .redes-cta__inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 56px; align-items: center;
    }
    .redes-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .redes-cta__visual {
      position: relative;
      min-height: 260px;
      display: flex; align-items: center; justify-content: center;
    }
    .redes-cta__icon {
      width: 120px; height: 120px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 28px;
      color: #fff;
      box-shadow: 0 12px 36px rgba(84,82,65,.22);
    }
    .redes-cta__icon--ig {
      background: linear-gradient(135deg, #833AB4, #FD1D1D 50%, #FCB045);
      transform: rotate(-6deg) translateX(-30px);
    }
    .redes-cta__icon--yt {
      background: #FF0000;
      transform: rotate(6deg) translateX(30px);
      position: absolute;
      box-shadow: 0 12px 36px rgba(255,0,0,.28);
    }
    .redes-cta__stat {
      position: absolute;
      bottom: 8px; right: 8px;
      background: #fff;
      padding: 14px 22px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(84,82,65,.14);
      text-align: center;
    }
    .redes-cta__stat-num {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800; color: var(--salmon);
      font-size: 1.6rem; line-height: 1;
    }
    .redes-cta__stat-label {
      font-size: .72rem; color: var(--marrom-med);
      margin-top: 3px;
      font-weight: 600;
    }
    @media (max-width: 820px) {
      .redes-cta { padding: 56px 0; }
      .redes-cta__inner { grid-template-columns: 1fr; gap: 36px; }
      .redes-cta__visual { min-height: 200px; order: -1; }
      .redes-cta__icon { width: 92px; height: 92px; border-radius: 20px; }
    }

    /* ── BLOG CTA BANNER ── */
    .blog-cta-banner {
      margin-top: 56px;
      background: linear-gradient(135deg, var(--marrom) 0%, var(--marrom-esc) 100%);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      display: flex; align-items: center; gap: 28px;
      box-shadow: 0 10px 32px rgba(84,82,65,.18);
    }
    .blog-cta-banner__icon {
      flex-shrink: 0;
      width: 64px; height: 64px;
      background: var(--salmon);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 6px 20px rgba(138,82,48,.4);
    }
    .blog-cta-banner__content { flex: 1; min-width: 0; }
    .blog-cta-banner__title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.25rem; font-weight: 800;
      margin-bottom: 6px;
      line-height: 1.3;
    }
    .blog-cta-banner__sub {
      font-size: .92rem; line-height: 1.7;
      color: rgba(255,255,255,.85);
    }
    .blog-cta-banner__sub strong { color: var(--blush); }
    .blog-cta-banner__btns {
      display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
    }
    .blog-cta-banner__btns .btn-outline {
      color: #fff; border-color: rgba(255,255,255,.45);
    }
    .blog-cta-banner__btns .btn-outline:hover {
      background: rgba(255,255,255,.12); color: #fff; border-color: #fff;
    }
    @media (max-width: 820px) {
      .blog-cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; gap: 18px; }
      .blog-cta-banner__btns { width: 100%; }
      .blog-cta-banner__btns .btn { justify-content: center; }
    }

    /* ── TESTE 10 DIAS ── */
    .teste10 {
      background: #fff;
      padding: 44px 0;
      border-bottom: 1px solid var(--blush);
      position: relative;
      overflow: hidden;
    }
    .teste10::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(118,131,63,.16), transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }
    .teste10__inner {
      max-width: 1080px; margin: 0 auto;
      background: #e6efd0;
      border-radius: var(--radius-lg);
      padding: 30px 38px;
      box-shadow: 0 12px 40px rgba(84,82,65,.10);
      border: 2px solid #bccb8a;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto;
      gap: 36px; align-items: center;
    }
    .teste10__title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.25rem, 2.4vw, 1.7rem);
      font-weight: 800; color: var(--marrom);
      line-height: 1.25; margin-bottom: 10px;
    }
    .teste10__title em { color: var(--salmon); font-style: normal; }
    .teste10__title strong { color: var(--salmon); font-weight: 800; }
    .teste10__sub {
      font-size: .96rem; color: var(--texto-light);
      max-width: 620px; margin: 0 0 14px; line-height: 1.6;
    }
    .teste10__features { display: flex; flex-wrap: wrap; gap: 8px 18px; }
    .teste10__feat {
      display: inline-flex; align-items: center; gap: 7px;
      font-family: 'Montserrat', sans-serif;
      font-size: .82rem; font-weight: 600; color: var(--marrom);
    }
    .teste10__btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
    @media (max-width: 760px) {
      .teste10 { padding: 36px 0; }
      .teste10__inner { grid-template-columns: 1fr; padding: 26px 22px; text-align: center; }
      .teste10__sub { margin-left: auto; margin-right: auto; }
      .teste10__features { justify-content: center; }
      .teste10__btns { flex-direction: row; flex-wrap: wrap; justify-content: center; }
      .teste10__btns .btn { justify-content: center; }
    }

    /* ── STRIP ── */
    .strip { background: #fff; padding: 10px 0; border-top: 1px solid var(--blush); }
    .strip__inner {
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
    }
    .strip__item {
      display: flex; align-items: center; gap: 8px;
      color: var(--marrom-med);
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem; font-weight: 600; letter-spacing: .03em;
    }
    .strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--salmon); flex-shrink:0; }

    /* ── SOBRE ── */
    .sobre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
    .sobre__img-wrap { position: relative; }
    .sobre__img {
      width: 100%;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--sombra-h);
    }
    .sobre__accent {
      position: absolute; top: -20px; right: -20px;
      width: 120px; height: 120px;
      border-radius: 50%;
      background: var(--blush);
      z-index: -1;
    }
    .sobre__accent2 {
      position: absolute; bottom: -16px; left: -16px;
      width: 80px; height: 80px;
      border-radius: 50%;
      background: var(--creme-med);
      z-index: -1;
    }
    .sobre__quote {
      background: var(--creme);
      border-left: 4px solid var(--salmon);
      padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
      margin: 24px 0;
      font-style: italic; color: var(--texto-light);
      font-size: .97rem; line-height: 1.75;
    }
    .sobre__quote strong {
      display: block; margin-top: 10px;
      font-style: normal; color: var(--marrom);
      font-family: 'Montserrat', sans-serif; font-size: .88rem;
    }

    /* ── DIFERENCIAIS ── */
    .diff-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid var(--creme-med);
      box-shadow: var(--sombra);
      transition: transform .22s, box-shadow .22s;
    }
    .diff-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-h); }
    .diff-icon {
      width: 52px; height: 52px;
      background: var(--creme);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 16px;
    }
    .diff-title {
      font-family: 'Montserrat', sans-serif;
      font-size: .97rem; font-weight: 700;
      color: var(--marrom); margin-bottom: 8px;
    }
    .diff-text { font-size: .9rem; color: var(--texto-light); line-height: 1.65; }

    /* ── SERVIÇOS ── */
    .svc-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--sombra);
      transition: transform .22s, box-shadow .22s;
    }
    .svc-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-h); }
    .svc-top {
      background: linear-gradient(135deg, var(--marrom), var(--marrom-med));
      padding: 32px 24px; text-align: center;
    }
    .svc-icon { font-size: 2rem; margin-bottom: 12px; }
    .svc-name {
      font-family: 'Montserrat', sans-serif;
      color: #fff; font-size: 1.05rem; font-weight: 700;
    }
    .svc-dur { font-size: .78rem; color: rgba(255,255,255,.68); margin-top: 5px; }
    .svc-body { padding: 24px; }
    .svc-desc { font-size: .9rem; color: var(--texto-light); line-height: 1.65; margin-bottom: 16px; }
    .svc-link {
      font-family: 'Montserrat', sans-serif;
      font-size: .83rem; font-weight: 700;
      color: var(--salmon); display: inline-flex; align-items: center; gap: 4px;
    }
    .svc-link:hover { gap: 8px; }

    /* ── APARELHOS ── */
    .aparelho-card {
      display: block; cursor: pointer;
      background: #fff;
      border: 2px solid var(--creme-med);
      border-radius: var(--radius);
      padding: 28px 20px; text-align: center;
      transition: all .22s; color: inherit;
    }
    .aparelho-card:hover {
      border-color: var(--salmon);
      background: var(--creme);
      transform: translateY(-4px);
    }
    .aparelho-icon { font-size: 2.2rem; margin-bottom: 14px; }
    .aparelho-name {
      font-family: 'Montserrat', sans-serif;
      font-size: .97rem; font-weight: 700;
      color: var(--marrom); margin-bottom: 8px;
    }
    .aparelho-desc { font-size: .87rem; color: var(--texto-light); line-height: 1.6; }

    .marcas-wrap { margin-top: 56px; text-align: center; }
    .marcas-label {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .09em; color: var(--marrom-med);
      margin-bottom: 18px;
    }
    .marcas-logos { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
    .marca-chip {
      background: #fff; border: 1px solid var(--creme-med);
      border-radius: 50px; padding: 8px 20px;
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem; font-weight: 700; color: var(--marrom-med);
      box-shadow: 0 2px 8px rgba(84,82,65,.07);
      transition: all .2s;
    }
    .marca-chip:hover { background: var(--salmon); color: #fff; border-color: var(--salmon); }

    /* ── APARELHOS PHOTO ── */
    .aparelhos-photo {
      width: 100%; border-radius: var(--radius-lg);
      object-fit: contain; margin-bottom: 48px;
      max-height: 200px;
      mix-blend-mode: multiply;
      background: transparent;
    }

    /* ── DEPOIMENTOS ── */
    .dep-card {
      background: #fff; border-radius: var(--radius-lg);
      padding: 32px 28px; box-shadow: var(--sombra);
      position: relative;
    }
    .dep-card::before {
      content: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 5rem; line-height: 1; font-weight: 800;
      color: var(--blush);
      position: absolute; top: 10px; left: 20px;
    }
    .dep-text {
      font-size: .95rem; color: var(--texto-light); line-height: 1.75;
      margin-bottom: 10px; padding-top: 24px; position: relative; z-index: 1;
      display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
      overflow: hidden;
    }
    .dep-text.dep-expanded {
      display: block; overflow: visible; -webkit-line-clamp: unset;
    }
    .dep-ler-mais {
      font-size: .8rem; color: var(--salmon); font-weight: 700;
      background: none; border: none; cursor: pointer; padding: 0;
      margin-bottom: 18px; font-family: 'Montserrat', sans-serif;
      letter-spacing: .04em;
    }
    .dep-ler-mais:hover { color: var(--marrom); }
    .dep-autor { display: flex; align-items: center; gap: 12px; }
    .dep-avatar {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--blush); display: flex;
      align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .dep-nome {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700; font-size: .88rem; color: var(--marrom);
    }
    .dep-cidade { font-size: .78rem; color: var(--texto-light); }
    .dep-stars { color: var(--salmon); font-size: .88rem; margin-top: 2px; }
    .dep-google-badge { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
    .dep-avatar--f { background: #4285F4 !important; color: #fff !important; font-weight: 700; font-size: .95rem; }
    .dep-avatar--e { background: #34A853 !important; color: #fff !important; font-weight: 700; font-size: .95rem; }
    .dep-avatar--j { background: #EA4335 !important; color: #fff !important; font-weight: 700; font-size: .95rem; }
    .dep-avatar--s { background: #9C27B0 !important; color: #fff !important; font-weight: 700; font-size: .95rem; }
    .dep-avatar--a { background: #FF7043 !important; color: #fff !important; font-weight: 700; font-size: .95rem; }

    /* ── DEP CAROUSEL ── */
    .dep-carousel { position: relative; }
    .dep-carousel-wrap { overflow: hidden; }
    .dep-track {
      display: flex; gap: 24px;
      transition: transform .42s cubic-bezier(.25,.46,.45,.94);
      will-change: transform;
      user-select: none;
    }
    .dep-track .dep-card {
      flex: 0 0 calc(33.333% - 16px);
      min-width: 0;
    }
    .dep-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: #fff; border: none; cursor: pointer;
      width: 46px; height: 46px; border-radius: 50%;
      box-shadow: var(--sombra); display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--marrom); transition: all .2s; z-index: 10;
      padding: 0;
    }
    .dep-nav:hover { background: var(--salmon); color: #fff; box-shadow: var(--sombra-h); }
    .dep-nav:disabled { opacity: .35; cursor: default; }
    .dep-nav:disabled:hover { background: #fff; color: var(--marrom); box-shadow: var(--sombra); }
    .dep-nav--prev { left: -23px; }
    .dep-nav--next { right: -23px; }
    .dep-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
    .dep-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--creme-med); border: none; cursor: pointer;
      transition: all .25s; padding: 0;
    }
    .dep-dot.active { background: var(--salmon); width: 24px; border-radius: 4px; }
    @media(max-width:960px) {
      .dep-track .dep-card { flex: 0 0 calc(50% - 12px); }
    }
    @media(max-width:620px) {
      .dep-track .dep-card { flex: 0 0 100%; }
      .dep-nav { display: none; }
    }

    /* ── BLOG ── */
    .blog-card {
      background: #fff; border-radius: var(--radius);
      overflow: hidden; box-shadow: var(--sombra);
      transition: transform .22s, box-shadow .22s;
      cursor: pointer; display: block; text-decoration: none; color: inherit;
    }
    .blog-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-h); }
    .blog-img {
      height: 185px; overflow: hidden;
      background: var(--creme);
      display: flex; align-items: center; justify-content: center;
    }
    .blog-img img { width: 100%; height: 100%; object-fit: cover; }
    .blog-img-placeholder { font-size: 2.8rem; }
    .blog-body { padding: 22px; }
    .blog-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: .68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .08em; color: var(--salmon); margin-bottom: 8px;
    }
    .blog-title {
      font-family: 'Montserrat', sans-serif;
      font-size: .97rem; font-weight: 700;
      color: var(--marrom); line-height: 1.4; margin-bottom: 10px;
    }
    .blog-excerpt { font-size: .87rem; color: var(--texto-light); line-height: 1.6; margin-bottom: 14px; }
    .blog-link {
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem; font-weight: 700; color: var(--salmon);
    }
    .blog-link:hover { color: var(--marrom); }

    /* ── BAIRROS ── */
    .bairro-chip {
      background: #fff; border: 1px solid var(--creme-med);
      border-radius: 50px; padding: 8px 18px;
      font-family: 'Montserrat', sans-serif;
      font-size: .82rem; font-weight: 600;
      color: var(--marrom); transition: all .2s; cursor: default;
    }
    .bairro-chip:hover { background: var(--salmon); color: #fff; border-color: var(--salmon); }

    /* ── CONTATO ── */
    .contato__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
    .contato__form {
      background: #fff; border-radius: var(--radius-lg);
      padding: 36px; box-shadow: var(--sombra);
    }
    .form-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      color: var(--marrom); margin-bottom: 22px;
    }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem; font-weight: 700;
      color: var(--marrom); margin-bottom: 6px;
      letter-spacing: .03em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--creme-med);
      border-radius: 10px;
      font-family: 'Nunito', sans-serif; font-size: .93rem;
      color: var(--texto); background: var(--creme);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--salmon);
      box-shadow: 0 0 0 3px rgba(138,82,48,.12);
      background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 96px; }

    .info-block { margin-bottom: 22px; }
    .info-block__label {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .09em; color: rgba(255,255,255,.55);
      margin-bottom: 4px;
    }
    .info-block__val { color: #fff; font-size: 1rem; line-height: 1.55; }
    .info-block__val a { color: var(--blush); }
    .info-block__val a:hover { color: #fff; }

    .social-row { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
    .social-btn {
      display: flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      color: #fff; padding: 9px 18px; border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem; font-weight: 700; letter-spacing: .03em;
      transition: all .2s;
    }
    .social-btn:hover { background: rgba(255,255,255,.22); }

    /* ── FOOTER ── */
    footer { background: var(--marrom-esc); color: rgba(255,255,255,.6); padding: 52px 0 24px; }
    .footer__grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 44px;
    }
    .footer__logo { display: none; }
    .footer__logo[src="Logo1.png"] { display: block; height: 52px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
    .footer__desc { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
    .footer__h {
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .09em; color: rgba(255,255,255,.9);
      margin-bottom: 14px;
    }
    .footer__ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer__ul a { font-size: .88rem; transition: color .2s; }
    .footer__ul a:hover { color: var(--blush); }
    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 20px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px; font-size: .8rem;
    }

    /* ── WA FLOAT ── */
    .wa {
      position: fixed; bottom: 28px; right: 28px; z-index: 800;
      width: 80px; height: 80px; border-radius: 50%;
      background: #25D366; display: flex;
      align-items: center; justify-content: center;
      box-shadow: 0 6px 30px rgba(37,211,102,.55);
      transition: transform .2s, box-shadow .2s;
      font-size: 2.2rem;
    }

    /* ── MOBILE STICKY BAR ── */
    .mobile-bar {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 850;
      background: #fff;
      border-top: 1px solid var(--blush);
      box-shadow: 0 -4px 20px rgba(84,82,65,.12);
      padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
      gap: 6px;
    }
    .mobile-bar__btn {
      flex: 1;
      display: inline-flex; align-items: center; justify-content: center; gap: 6px;
      padding: 12px 6px;
      border-radius: 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: .78rem; font-weight: 700;
      letter-spacing: .02em;
      text-align: center;
      transition: transform .15s, background .2s;
      line-height: 1;
    }
    .mobile-bar__btn:active { transform: scale(.96); }
    .mobile-bar__btn--primary {
      background: var(--salmon); color: #fff;
      box-shadow: 0 4px 14px rgba(138,82,48,.32);
    }
    .mobile-bar__btn--wa { background: #25D366; color: #fff; }
    .mobile-bar__btn--phone { background: var(--creme); color: var(--marrom); border: 1px solid var(--blush); }
    .wa::after {
      content: '';
      position: absolute;
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(37,211,102,.35);
      animation: waPulse 2s ease-out infinite;
    }
    @keyframes waPulse {
      0% { transform: scale(1); opacity: .8; }
      100% { transform: scale(1.7); opacity: 0; }
    }
    .wa:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,.65); }

    /* ── FADE IN ── */
    @keyframes fadeUp {
      from { opacity:0; transform: translateY(22px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .fu  { animation: fadeUp .6s ease both; }
    .fu2 { animation: fadeUp .6s .14s ease both; }
    .fu3 { animation: fadeUp .6s .28s ease both; }

    /* ── MOBILE ── */
    @media(max-width:960px) {
      .hero__inner { grid-template-columns: 1fr; gap:36px; padding-bottom: 72px; }
      .hero__photo-wrap { max-width:420px; margin: 0 auto; }
      .sobre__grid { grid-template-columns:1fr; gap:40px; }
      .grid-3 { grid-template-columns: 1fr 1fr; }
      .grid-4 { grid-template-columns: 1fr 1fr; }
      .contato__grid { grid-template-columns:1fr; }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .strip__inner { gap:18px; }
    }
    @media(max-width:620px) {
      .section { padding:60px 0; }
      .nav__links { display:none; }
      .hamburger { display:flex; }
      .nav__phone { font-size: 1rem; padding: 7px 16px; }
      .nav__cta { display: none; }
      .nav__inner { height: 72px; }
      .nav__logo img { height: 42px; }
      .nav__links.open {
        display:flex; flex-direction:column;
        position:absolute; top:96px; left:0; right:0;
        background:#fff; padding:20px 28px;
        box-shadow:var(--sombra); gap:18px;
        border-top: 1px solid var(--creme-med);
      }
      .grid-2, .grid-3, .grid-4 { grid-template-columns:1fr; }
      .footer__grid { grid-template-columns:1fr; }
      .hero__btns { flex-direction:column; }
      .hero__float-card { left:0; bottom:-12px; }
      .dep-card[style*="grid-column"] { grid-column: span 1 !important; }
      .dep-card { font-size: .9rem; }
      .dep-text { font-size: .88rem; }
      /* Mobile sticky bar takes over — WhatsApp e telefone já estão na barra */
      .mobile-bar { display: flex; }
      body { padding-bottom: 76px; }
      .wa { display: none; }
    }

    /* ── DIFERENCIAIS DESTAQUE ── */
    .diff-destaque-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
      margin-bottom: 0;
    }
    .diff-destaque-card {
      background: #fff;
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      box-shadow: var(--sombra);
      border: 2px solid var(--blush);
      transition: transform .22s, box-shadow .22s;
    }
    .diff-destaque-card:hover { transform: translateY(-5px); box-shadow: var(--sombra-h); }
    .diff-destaque-icon { font-size: 2.4rem; margin-bottom: 14px; }
    .diff-destaque-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.05rem; font-weight: 800; color: var(--marrom);
      margin-bottom: 10px; line-height: 1.3;
    }
    .diff-destaque-text { font-size: .93rem; color: var(--texto-light); line-height: 1.7; }
    .diff-destaque-text strong { color: var(--salmon); }

    /* ── MAPA ── */
    .mapa-wrap { margin-top: 6px; }

    /* ── FAQ ── */
    .faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: #fff; border-radius: var(--radius);
      box-shadow: var(--sombra);
      overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px; gap: 16px;
      font-family: 'Montserrat', sans-serif;
      font-size: .97rem; font-weight: 700; color: var(--marrom);
      text-align: left; transition: background .2s;
    }
    .faq-q:hover { background: var(--creme); }
    .faq-arrow { font-size: 1.1rem; color: var(--salmon); flex-shrink: 0; transition: transform .25s; }
    .faq-q.open .faq-arrow { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden;
      padding: 0 24px;
      font-size: .95rem; color: var(--texto-light); line-height: 1.75;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-a.open { max-height: 300px; padding: 0 24px 20px; }
    .faq-a strong { color: var(--marrom); }


    /* ── MODELOS / MARCAS ── */
    .marca-bloco { }
    .marca-header { display:flex; align-items:flex-start; gap:20px; flex-wrap:wrap; margin-bottom:8px; }
    .marca-badge {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      padding: 8px 22px; border-radius: 50px;
      flex-shrink: 0;
    }
    .marca-badge--rexton { background: #1a3c5e; color: #fff; }
    .marca-badge--nuear  { background: var(--marrom-esc); color: #fff; }
    .marca-desc { font-size: .97rem; color: var(--texto-light); line-height: 1.7; max-width: 680px; padding-top:6px; }
    .modelo-card {
      background: #fff; border-radius: var(--radius);
      padding: 26px 24px; box-shadow: var(--sombra);
      border: 1px solid var(--creme-med);
      transition: box-shadow .22s, transform .22s;
    }
    .modelo-card:hover { box-shadow: var(--sombra-h); transform: translateY(-3px); }
    .modelo-card--cta { background: var(--creme); border-color: var(--blush); }
    .modelo-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: .68rem; font-weight: 700; letter-spacing: .09em;
      text-transform: uppercase; color: var(--salmon);
      background: var(--creme); border: 1px solid var(--blush);
      padding: 3px 10px; border-radius: 50px; margin-bottom: 10px;
    }
    .modelo-badge--dark { color: var(--marrom-esc); background: var(--creme-med); border-color: var(--creme-med); }
    .modelo-nome { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.08rem; color: var(--marrom); margin-bottom: 10px; }
    .modelo-desc { font-size: .88rem; color: var(--texto-light); line-height: 1.7; margin-bottom: 14px; }
    .modelo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag {
      font-family: 'Montserrat', sans-serif;
      font-size: .68rem; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase;
      padding: 3px 10px; border-radius: 50px;
      background: var(--marrom); color: #fff;
    }

    /* Modelo destaque NXG Ai24 */
    .modelo-destaque {
      background: linear-gradient(135deg, var(--marrom-esc) 0%, #2a2820 100%);
      border-radius: var(--radius-lg);
      padding: 36px 36px 32px;
      position: relative;
      overflow: hidden;
      margin-top: 28px;
    }
    .modelo-destaque::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(138,82,48,.15);
    }
    .modelo-destaque-badge {
      display: inline-block;
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase;
      background: var(--salmon); color: #fff;
      padding: 5px 16px; border-radius: 50px;
      margin-bottom: 20px;
    }
    .modelo-destaque-inner { display: grid; grid-template-columns: 1fr 260px; gap: 36px; align-items: start; }
    .modelo-destaque-nome { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 6px; line-height: 1.1; }
    .modelo-destaque-sub { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 18px; }
    .modelo-destaque-desc { font-size: .95rem; color: rgba(255,255,255,.82); line-height: 1.8; margin-bottom: 18px; }
    .modelo-destaque-desc strong { color: var(--blush); }
    .modelo-destaque-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .modelo-destaque-list li { font-size: .92rem; color: rgba(255,255,255,.88); }
    .modelo-destaque-side { display: flex; flex-direction: column; }
    .modelo-ai-card {
      background: rgba(255,255,255,.08); border-radius: var(--radius);
      padding: 18px 20px; text-align: center;
      border: 1px solid rgba(255,255,255,.12);
    }
    .modelo-ai-num { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1.1; }
    .modelo-ai-label { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 4px; }

    @media(max-width:860px) {
      .modelo-destaque-inner { grid-template-columns: 1fr; }
      .modelo-destaque-side { flex-direction: row; gap: 12px; }
      .modelo-ai-card { flex: 1; }
    }
    @media(max-width:580px) {
      .diff-destaque-grid { grid-template-columns: 1fr; }
      .modelo-destaque-side { flex-direction: column; }
    }


    /* ── IMAGENS DE PRODUTO ── */
    .modelo-img {
      width: 100%; height: 180px;
      object-fit: contain;
      border-radius: 10px;
      margin-bottom: 16px;
      background: var(--creme);
      padding: 12px;
    }
    .modelo-img-wrap {
      background: var(--creme);
      border-radius: 10px;
      margin-bottom: 16px;
      display: flex; align-items: center; justify-content: center;
      height: 180px; overflow: hidden;
    }
    .modelo-img-wrap img {
      height: 180px; width: 100%;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* ── DEVICE CARDS (Aparelhos Rexton) ── */
    .device-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
    .device-row {
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 28px;
      align-items: start;
      background: #fff;
      border: 1px solid var(--creme-med);
      border-radius: var(--radius-lg);
      padding: 22px 26px;
      box-shadow: var(--sombra);
      transition: box-shadow .22s, transform .22s;
    }
    .device-row:hover { box-shadow: var(--sombra-h); transform: translateY(-2px); }
    .device-photo-side { text-align: center; }
    .device-photo-wrap {
      background: var(--creme);
      border-radius: var(--radius);
      padding: 16px;
      margin-bottom: 10px;
      min-height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .device-photo-wrap img { max-height: 155px; width: auto; max-width: 100%; object-fit: contain; }
    .device-form-tag {
      font-family: 'Montserrat', sans-serif;
      font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--marrom-med); background: var(--creme-med);
      border-radius: 50px; padding: 4px 12px; display: inline-block;
    }
    .device-info-side { display: flex; flex-direction: column; gap: 12px; }
    .device-name { font-family: 'Montserrat', sans-serif; font-size: 1.22rem; font-weight: 800; color: var(--marrom-esc); margin: 0; }
    .device-subtitle { font-size: .88rem; color: var(--texto-light); margin: 0; line-height: 1.5; }
    .device-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; }
    .device-features li { font-size: .87rem; color: var(--texto); padding-left: 15px; position: relative; line-height: 1.5; }
    .device-features li::before { content: '›'; position: absolute; left: 0; color: var(--salmon); font-weight: 700; font-size: 1rem; line-height: 1.4; }
    .device-lines-label { font-family: 'Montserrat', sans-serif; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--marrom-med); margin-bottom: 7px; }
    .device-colors { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
    .color-swatch { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(0,0,0,.15); display: inline-block; box-shadow: 0 1px 3px rgba(0,0,0,.12); cursor: default; }
    .lines-table { width: 100%; border-collapse: collapse; font-size: .83rem; }
    .lines-table th {
      background: #1a3c5e; color: #fff;
      font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .70rem; letter-spacing: .04em;
      padding: 7px 10px; text-align: center;
    }
    .lines-table th:first-child { text-align: left; }
    .lines-table td { padding: 5px 10px; text-align: center; color: var(--texto); border-bottom: 1px solid var(--creme-med); }
    .lines-table td:first-child { text-align: left; font-weight: 600; color: var(--marrom-med); font-size: .82rem; }
    .lines-table tr:last-child td { border-bottom: none; }
    .lines-table tbody tr:nth-child(even) td { background: var(--creme); }
    @media(max-width:780px) {
      .device-row { grid-template-columns: 1fr; }
      .device-photo-wrap { min-height: 120px; }
    }

/* ===== Faixa Teste 10 dias ===== */
.faixa10{background:#76833f;color:#fbfaf3;}
  .faixa10__inner{max-width:1180px;margin:0 auto;padding:13px 22px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;}
  .faixa10__txt{display:flex;align-items:center;gap:12px;line-height:1.35;}
  .faixa10__icon{font-size:26px;line-height:1;flex-shrink:0;}
  .faixa10__strong{font-family:'Montserrat',sans-serif;font-weight:800;font-size:16px;display:block;}
  .faixa10__sub{font-size:14px;opacity:.93;}
  .faixa10__btn{background:#fbfaf3;color:#4a5a2a;font-family:'Montserrat',sans-serif;font-weight:700;font-size:13px;padding:10px 18px;border-radius:10px;white-space:nowrap;text-decoration:none;transition:transform .15s,box-shadow .15s;flex-shrink:0;}
  .faixa10__btn:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.18);}
  @media(max-width:640px){
    .faixa10__inner{flex-direction:column;text-align:center;padding:14px 18px;}
    .faixa10__txt{flex-direction:column;gap:6px;}
    .faixa10__btn{width:100%;text-align:center;}
  }

/* ── GALERIA DA CLÍNICA ── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.galeria-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  cursor: pointer;
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.galeria-item:hover img {
  transform: scale(1.04);
}
.galeria-item--tall {
  grid-row: span 2;
}
.galeria-item--wide {
  grid-column: span 2;
}

/* lightbox */
.galeria-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.galeria-lightbox.open {
  display: flex;
}
.galeria-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
  object-fit: contain;
}
.galeria-lightbox__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

@media(max-width:768px){
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .galeria-item--tall { grid-row: span 1; }
  .galeria-item--wide { grid-column: span 1; }
}
@media(max-width:480px){
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
    gap: 8px;
  }
}
