/* Pet's Day Estética Animal — CSS principal */
/* ============ TOKENS ============ */
    :root {
      --teal-50:  #EFFAFB;
      --teal-100: #D7F0F2;
      --teal-200: #A6DFE4;
      --teal-400: #5BC2CE;
      --teal-500: #1FA8B5;  /* Marca principal */
      --teal-600: #178A95;
      --teal-700: #126571;
      --teal-900: #0A3A42;

      --orange-50:  #FFF5E6;
      --orange-300: #FBC365;
      --orange-400: #F5A623;
      --orange-500: #E8941A;
      --orange-600: #BF7613;

      --cream-50: #FCFAF5;
      --cream-100: #F6EFE0;
      --cream-200: #E9DCBD;

      --coal-900: #1B2026;
      --coal-800: #2C333B;
      --coal-600: #515A65;
      --coal-400: #8A93A0;
      --coal-300: #B6BCC4;
      --coal-100: #E6E9EE;

      --white: #FFFFFF;
      --green-whatsapp: #25D366;
      --green-whatsapp-dark: #1DA851;

      --shadow-sm: 0 1px 2px rgba(27,32,38,.06), 0 2px 6px rgba(27,32,38,.04);
      --shadow-md: 0 4px 10px rgba(27,32,38,.08), 0 10px 30px rgba(27,32,38,.06);
      --shadow-lg: 0 10px 20px rgba(27,32,38,.10), 0 30px 60px rgba(27,32,38,.12);
      --shadow-teal: 0 10px 30px rgba(31,168,181,.25);
      --shadow-orange: 0 10px 30px rgba(245,166,35,.30);

      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --radius-pill: 999px;

      --container-max: 1240px;
      --container-pad: clamp(20px, 4vw, 40px);

      --font-display: "Fraunces", Georgia, serif;
      --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

      --ease: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ============ RESET ============ */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;} }
    body {
      margin: 0;
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--coal-800);
      background: var(--cream-50);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }
    img, svg, video { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
    h1, h2, h3, h4, h5 {
      font-family: var(--font-display);
      font-weight: 700;
      line-height: 1.15;
      color: var(--coal-900);
      margin: 0 0 .5em;
      letter-spacing: -0.01em;
      font-variation-settings: "opsz" 144;
    }
    p { margin: 0 0 1em; }

    /* ============ LAYOUT ============ */
    .container { max-width: var(--container-max); margin: 0 auto; padding-left: var(--container-pad); padding-right: var(--container-pad); }
    .section { padding: clamp(64px, 9vw, 120px) 0; }
    .section--teal { background: var(--teal-50); }
    .section--cream { background: var(--cream-100); }
    .section--dark { background: var(--coal-900); color: var(--cream-100); }
    .section--dark h2, .section--dark h3 { color: var(--white); }

    .section__header { max-width: 780px; margin: 0 auto clamp(40px, 6vw, 70px); text-align: center; }
    .eyebrow {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal-600);
      background: var(--teal-100);
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      margin-bottom: 20px;
    }
    .eyebrow--orange { color: var(--orange-600); background: var(--orange-50); }
    .eyebrow--cream { color: var(--coal-900); background: var(--cream-200); }
    .section__header h2 {
      font-size: clamp(1.9rem, 4vw, 2.75rem);
      margin-bottom: 16px;
    }
    .section__header p {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      color: var(--coal-600);
      margin: 0 auto;
      max-width: 620px;
    }

    /* ============ BOTÕES ============ */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: 1rem;
      line-height: 1;
      transition: transform .2s var(--ease), box-shadow .3s var(--ease), background-color .2s;
      white-space: nowrap;
      cursor: pointer;
      border: 2px solid transparent;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    .btn--whatsapp {
      background: var(--green-whatsapp);
      color: #fff;
      box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
    }
    .btn--whatsapp:hover { background: var(--green-whatsapp-dark); box-shadow: 0 12px 32px rgba(37, 211, 102, .45); }

    .btn--teal { background: var(--teal-500); color: #fff; box-shadow: var(--shadow-teal); }
    .btn--teal:hover { background: var(--teal-600); }

    .btn--orange { background: var(--orange-400); color: var(--coal-900); box-shadow: var(--shadow-orange); }
    .btn--orange:hover { background: var(--orange-500); color: #fff; }

    .btn--outline {
      background: transparent;
      border-color: var(--coal-300);
      color: var(--coal-900);
    }
    .btn--outline:hover { border-color: var(--coal-900); background: var(--coal-900); color: var(--white); }

    .btn--sm { padding: 10px 20px; font-size: 0.9rem; }
    .btn--lg { padding: 20px 36px; font-size: 1.1rem; }

    /* ============ ANIMAÇÃO REVEAL ============ */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
    .reveal.is-visible { opacity: 1; transform: translateY(0); }

    /* ============ HEADER ============ */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid var(--coal-100);
      transition: background .3s, box-shadow .3s;
    }
    .header.is-scrolled { box-shadow: var(--shadow-sm); }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 0;
    }
    .header__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .header__logo img { height: 56px; width: auto; }
    .header__logo span { display: none; }

    .nav-primary { display: none; }
    @media (min-width: 900px) {
      .nav-primary { display: flex; align-items: center; gap: 4px; }
      .nav-primary a {
        padding: 10px 14px;
        border-radius: var(--radius-pill);
        font-weight: 600;
        font-size: 0.95rem;
        color: var(--coal-800);
        transition: background .2s, color .2s;
      }
      .nav-primary a:hover { background: var(--teal-100); color: var(--teal-700); }
    }
    .header__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .open-badge {
      display: none;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--coal-600);
    }
    @media (min-width: 1100px) { .open-badge { display: inline-flex; } }
    .open-badge__dot {
      width: 8px; height: 8px;
      background: #22c55e;
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(34,197,94,.7);
      animation: pulse-dot 2s infinite;
    }
    .open-badge__dot--off { background: var(--coal-400); animation: none; box-shadow:none; }
    @keyframes pulse-dot { 0%{box-shadow:0 0 0 0 rgba(34,197,94,.7);} 70%{box-shadow:0 0 0 8px rgba(34,197,94,0);} 100%{box-shadow:0 0 0 0 rgba(34,197,94,0);} }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 10px;
      border-radius: 10px;
      background: var(--teal-100);
    }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--teal-700); border-radius: 2px; transition: transform .3s; }
    @media (min-width: 900px) { .nav-toggle { display: none; } }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--white);
      z-index: 200;
      display: flex;
      flex-direction: column;
      padding: 24px;
      transform: translateX(100%);
      transition: transform .4s var(--ease);
      overflow-y: auto;
    }
    .mobile-menu.is-open { transform: translateX(0); }
    .mobile-menu__close {
      align-self: flex-end;
      padding: 12px;
      border-radius: 12px;
      background: var(--coal-100);
      font-size: 1.4rem;
      line-height: 1;
    }
    .mobile-menu a {
      display: block;
      padding: 18px 4px;
      font-size: 1.25rem;
      font-weight: 600;
      border-bottom: 1px solid var(--coal-100);
    }
    .mobile-menu a:last-of-type { border-bottom: 0; }
    .mobile-menu__footer { margin-top: auto; padding-top: 30px; display: flex; flex-direction: column; gap: 12px; }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--teal-50) 0%, var(--cream-50) 60%);
      padding: clamp(48px, 8vw, 100px) 0 clamp(64px, 10vw, 120px);
    }
    .hero::before {
      content:'';
      position:absolute;
      top:-80px; right:-80px;
      width:320px; height:320px;
      background: radial-gradient(circle, rgba(245,166,35,.18), transparent 70%);
      filter: blur(40px);
      z-index: 0;
    }
    .hero__inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
      z-index: 1;
    }
    @media (min-width: 900px) { .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 60px; } }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--teal-700);
      font-size: 0.85rem;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: var(--radius-pill);
      box-shadow: var(--shadow-sm);
      margin-bottom: 20px;
    }
    .hero__badge svg { width: 16px; height: 16px; }

    .hero h1 {
      font-size: clamp(2.3rem, 5.5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      font-weight: 800;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--teal-600);
      font-variation-settings: "SOFT" 100;
    }
    .hero__sub {
      font-size: clamp(1.05rem, 1.6vw, 1.2rem);
      color: var(--coal-600);
      max-width: 560px;
      margin-bottom: 32px;
    }
    .hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

    .hero__proof {
      display: flex;
      flex-wrap: wrap;
      gap: 24px 40px;
      padding-top: 24px;
      border-top: 1px solid var(--coal-100);
    }
    .hero__proof-item strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.9rem;
      color: var(--teal-600);
      line-height: 1;
    }
    .hero__proof-item span { font-size: 0.85rem; color: var(--coal-600); }

    .hero__media {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/5;
    }
    .hero__media img { width: 100%; height: 100%; object-fit: cover; }
    .hero__media-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      right: 20px;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(10px);
      padding: 14px 18px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-md);
    }
    .hero__media-badge strong { font-family: var(--font-display); color: var(--coal-900); font-size: 0.95rem; line-height: 1.2; }
    .hero__media-badge span { font-size: 0.8rem; color: var(--coal-600); display: block; }
    .hero__media-badge-icon { width: 40px; height: 40px; background: var(--teal-100); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
    .hero__media-badge-icon svg { width: 20px; height: 20px; color: var(--teal-600); }

    /* ============ TRUST BAR ============ */
    .trust-bar {
      background: var(--coal-900);
      color: var(--cream-100);
      padding: 28px 0;
    }
    .trust-bar__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      text-align: center;
    }
    @media (min-width: 700px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }
    .trust-item__icon { width: 32px; height: 32px; margin: 0 auto 8px; color: var(--orange-400); }
    .trust-item strong { display: block; font-weight: 700; font-size: 1.1rem; color: #fff; }
    .trust-item span { font-size: 0.82rem; color: var(--coal-300); }

    /* ============ SERVIÇOS (8 CARDS) ============ */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 620px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 980px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

    .service-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      transition: transform .4s var(--ease), box-shadow .4s var(--ease);
      position: relative;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

    .service-card__image-wrap {
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--coal-100);
      position: relative;
    }
    .service-card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s var(--ease);
    }
    .service-card:hover .service-card__image { transform: scale(1.05); }

    .service-card__tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #fff;
      color: var(--coal-900);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      box-shadow: var(--shadow-sm);
      letter-spacing: 0.02em;
    }
    .service-card__tag--premium { background: var(--orange-400); color: var(--coal-900); }
    .service-card__tag--signature { background: var(--teal-500); color: #fff; }

    .service-card__body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .service-card__title {
      font-size: 1.2rem;
      margin-bottom: 8px;
      font-weight: 700;
    }
    .service-card__desc {
      font-size: 0.93rem;
      color: var(--coal-600);
      line-height: 1.55;
      margin-bottom: 18px;
      flex: 1;
    }
    .service-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--teal-600);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 10px 0;
      border-top: 1px solid var(--coal-100);
      transition: color .2s, gap .2s;
    }
    .service-card__cta:hover { color: var(--teal-700); gap: 12px; }
    .service-card__cta svg { width: 18px; height: 18px; }

    /* ============ DIFERENCIAIS ============ */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 620px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 980px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
    .feature {
      display: flex;
      gap: 18px;
      padding: 28px 24px;
      background: #fff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    }
    .feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .feature__icon {
      width: 52px; height: 52px;
      background: var(--teal-100);
      color: var(--teal-600);
      border-radius: 14px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .feature__icon svg { width: 26px; height: 26px; }
    .feature h4 { font-size: 1.1rem; margin-bottom: 6px; }
    .feature p { font-size: 0.93rem; color: var(--coal-600); margin: 0; }

    /* ============ JORNADA 6 ANOS ============ */
    .journey {
      background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
      padding: clamp(80px, 10vw, 140px) 0;
    }
    .journey__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: center;
    }
    @media (min-width: 900px) { .journey__grid { grid-template-columns: 1fr 1.2fr 1fr; gap: 60px; } }

    .journey__photo {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 3/4;
      position: relative;
    }
    .journey__photo img { width: 100%; height: 100%; object-fit: cover; }
    .journey__photo--left { transform: rotate(-2deg); }
    .journey__photo--right { transform: rotate(2deg); }
    @media (max-width: 899px) {
      .journey__photo--left, .journey__photo--right { transform: none; max-width: 340px; margin: 0 auto; }
    }
    .journey__photo::after {
      content: attr(data-caption);
      position: absolute;
      bottom: 16px; left: 16px;
      background: rgba(255,255,255,.95);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.88rem;
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      color: var(--coal-800);
    }

    .journey__text { text-align: center; }
    .journey__text h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 20px; }
    .journey__text h2 em { color: var(--teal-600); font-style: italic; }
    .journey__text p { font-size: 1.05rem; color: var(--coal-600); }
    .journey__stat {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 32px;
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      margin-top: 24px;
    }
    .journey__stat strong {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--orange-500);
      line-height: 1;
    }
    .journey__stat span { font-size: 0.85rem; color: var(--coal-600); margin-top: 4px; }

    /* ============ GALERIA ============ */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    @media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
    @media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
    .gallery-item {
      aspect-ratio: 1/1;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--coal-100);
      cursor: pointer;
      position: relative;
      padding: 0;
      border: 0;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s var(--ease), opacity .6s var(--ease);
    }
    .gallery-item.is-swapping img { opacity: 0; transform: scale(1.02); }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after {
      content:'';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(31,168,181,.25), transparent);
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
    }
    .gallery-item:hover::after { opacity: 1; }

    /* ============ FAQ ============ */
    .faq { max-width: 820px; margin: 0 auto; }
    .faq__item {
      background: #fff;
      border-radius: var(--radius-md);
      margin-bottom: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow .3s;
    }
    .faq__item[open] { box-shadow: var(--shadow-md); }
    .faq__item-head {
      padding: 22px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--coal-900);
      cursor: pointer;
      list-style: none;
      user-select: none;
    }
    .faq__item-head::-webkit-details-marker { display: none; }
    .faq__item-head::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--teal-500);
      transition: transform .3s;
      flex-shrink: 0;
    }
    .faq__item[open] .faq__item-head::after { transform: rotate(45deg); }
    .faq__item-body {
      padding: 0 24px 24px;
      color: var(--coal-600);
      font-size: 0.98rem;
      line-height: 1.65;
    }

    /* ============ LOCALIZAÇÃO ============ */
    .location__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: stretch;
    }
    @media (min-width: 900px) { .location__grid { grid-template-columns: 1fr 1.2fr; } }
    .location__info {
      background: #fff;
      padding: 36px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }
    .location__info h3 { font-size: 1.5rem; margin-bottom: 20px; }
    .location__row {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px dashed var(--coal-100);
    }
    .location__row:last-of-type { border-bottom: 0; }
    .location__row-icon {
      width: 40px; height: 40px;
      background: var(--teal-100);
      color: var(--teal-600);
      border-radius: 10px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }
    .location__row-icon svg { width: 20px; height: 20px; }
    .location__row strong { display: block; font-size: 0.88rem; color: var(--coal-600); margin-bottom: 2px; font-weight: 600; }
    .location__row p { margin: 0; font-size: 1rem; color: var(--coal-900); font-weight: 500; }

    .location__map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      min-height: 400px;
      background: var(--coal-100);
    }
    .location__map iframe { width: 100%; height: 100%; border: 0; display: block; }

    /* ============ CTA FINAL ============ */
    .cta-final {
      background: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
      color: #fff;
      text-align: center;
      padding: clamp(70px, 10vw, 120px) 0;
      position: relative;
      overflow: hidden;
    }
    .cta-final::before {
      content:'';
      position: absolute;
      top: -60px; left: -60px; right: -60px; bottom: -60px;
      background: radial-gradient(ellipse at top, rgba(245,166,35,.25), transparent 60%);
      z-index: 0;
    }
    .cta-final__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-final h2 {
      color: #fff;
      font-size: clamp(2rem, 4.5vw, 3rem);
      margin-bottom: 20px;
    }
    .cta-final p {
      font-size: clamp(1rem, 1.6vw, 1.15rem);
      color: rgba(255,255,255,.9);
      margin-bottom: 36px;
    }
    .cta-final__ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

    .cta-final__insta {
      margin-top: 40px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      background: rgba(255,255,255,.12);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: var(--radius-pill);
      font-size: 0.95rem;
      color: #fff;
      transition: background .2s;
    }
    .cta-final__insta:hover { background: rgba(255,255,255,.2); }
    .cta-final__insta svg { width: 20px; height: 20px; }

    /* ============ FOOTER ============ */
    .footer {
      background: var(--coal-900);
      color: var(--cream-200);
      padding: 70px 0 30px;
    }
    .footer__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }
    @media (min-width: 700px) { .footer__grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }

    .footer h5 {
      color: #fff;
      font-size: 0.85rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-family: var(--font-body);
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer__brand img { height: 80px; width: auto; margin-bottom: 16px; background: var(--teal-500); padding: 10px; border-radius: var(--radius-md); }
    .footer__brand p { font-size: 0.92rem; line-height: 1.6; color: var(--coal-300); margin: 0; }

    .footer ul { list-style: none; margin: 0; padding: 0; }
    .footer ul li { margin-bottom: 10px; }
    .footer ul a { color: var(--cream-200); font-size: 0.92rem; transition: color .2s; }
    .footer ul a:hover { color: var(--orange-400); }

    .footer__social { display: flex; gap: 10px; margin-top: 14px; }
    .footer__social a {
      width: 40px; height: 40px;
      background: rgba(255,255,255,.06);
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: background .2s;
    }
    .footer__social a:hover { background: var(--orange-400); color: var(--coal-900); }
    .footer__social svg { width: 18px; height: 18px; }

    .footer__bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: space-between;
      font-size: 0.82rem;
      color: var(--coal-400);
    }
    .footer__teaser {
      background: rgba(245,166,35,.1);
      border: 1px dashed rgba(245,166,35,.3);
      padding: 16px 20px;
      border-radius: var(--radius-md);
      font-size: 0.88rem;
      color: var(--cream-100);
      margin-top: 20px;
    }
    .footer__teaser strong { color: var(--orange-400); }

    /* ============ WHATSAPP FLUTUANTE ============ */
    .wa-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: var(--green-whatsapp);
      color: #fff;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      box-shadow: 0 8px 24px rgba(37,211,102,.45);
      z-index: 80;
      transition: transform .2s, box-shadow .3s;
      animation: wa-pulse 2.4s infinite;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.55); }
    .wa-float svg { width: 30px; height: 30px; }
    @keyframes wa-pulse { 0%,100%{box-shadow:0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4);} 50%{box-shadow:0 8px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0);} }

    /* ============ LIGHTBOX ============ */
    .lightbox {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.92);
      z-index: 300;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .lightbox.is-open { display: flex; }
    .lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius-md); }
    .lightbox__close {
      position: absolute; top: 20px; right: 20px;
      width: 44px; height: 44px; border-radius: 50%;
      background: rgba(255,255,255,.15);
      color: #fff; font-size: 1.5rem;
    }

    /* ============ SR-ONLY ============ */
    .sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
/* ============ AVALIAÇÕES / REVIEWS ============ */
.reviews-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.reviews-stars {
  display: flex;
  gap: 3px;
  color: #FBBC04;
}
.reviews-stars svg { width: 26px; height: 26px; }
.reviews-rating__text { font-size: 0.95rem; color: var(--coal-600); }
.reviews-rating__text strong { color: var(--coal-900); font-size: 1.15rem; font-family: var(--font-display); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 680px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--coal-100);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.review-card__header strong {
  display: block;
  font-size: 0.98rem;
  color: var(--coal-900);
  line-height: 1.2;
}
.review-card__stars {
  color: #FBBC04;
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 3px;
}
.review-card__g {
  width: 22px; height: 22px;
  margin-left: auto;
  opacity: 0.65;
  flex-shrink: 0;
}
.review-card__body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--coal-800);
  margin: 0;
  /* Aspas tipográficas sutis na margem */
  position: relative;
  padding-left: 14px;
}
.review-card__body::before {
  content: '"';
  position: absolute;
  left: -6px;
  top: -8px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--teal-200);
  font-weight: 700;
  line-height: 1;
}


/* ============ COOKIE BANNER — LGPD (Interesse Legítimo + Consent Seletivo) ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 400;
  max-width: 680px;
  width: calc(100% - 32px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid var(--coal-100);
  opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 18px 22px;
}
.cookie-banner__text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--coal-800);
}
.cookie-banner__text strong {
  display: block;
  color: var(--coal-900);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Botões — hierarquia visual EQUILIBRADA (mesmo tamanho, peso, padding) */
/* Ordem por ergonomia natural: Personalizar (esq) | Aceitar (dir, zona polegar) */
.cookie-btn {
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  min-height: 44px; /* acessibilidade: toque mínimo 44x44 */
}
.cookie-btn--primary {
  background: var(--teal-500);
  color: #fff;
}
.cookie-btn--primary:hover { background: var(--teal-600); }
.cookie-btn--primary:focus-visible {
  outline: 3px solid var(--teal-200);
  outline-offset: 2px;
}
.cookie-btn--ghost {
  background: transparent;
  color: var(--coal-700);
  border: 1.5px solid var(--coal-300);
}
.cookie-btn--ghost:hover {
  background: var(--coal-100);
  color: var(--coal-900);
}
.cookie-btn--ghost:focus-visible {
  outline: 3px solid var(--coal-300);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-banner { bottom: 12px; border-radius: 14px; }
  .cookie-banner__inner { padding: 16px; gap: 14px; }
  .cookie-banner__text { font-size: 0.88rem; min-width: 0; flex-basis: 100%; }
  .cookie-banner__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr; /* Aceitar um pouco mais largo por proeminência natural */
    gap: 8px;
  }
  .cookie-btn { padding: 12px 14px; font-size: 0.87rem; }
}

/* ============ MODAL "Personalizar" ============ */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.cookie-modal__content {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px 28px 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.cookie-modal__content h2 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--coal-900);
}
.cookie-modal__intro {
  font-size: 0.93rem;
  color: var(--coal-600);
  margin-bottom: 20px;
  line-height: 1.55;
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coal-100);
  color: var(--coal-900);
  font-size: 1.5rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: background .2s;
}
.cookie-modal__close:hover { background: var(--coal-300); }

.cookie-category {
  background: #F8F9FA;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.cookie-category__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-category__header strong {
  font-size: 0.98rem;
  color: var(--coal-900);
}
.cookie-category__label {
  cursor: pointer;
}
.cookie-category p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--coal-700);
  margin: 0;
}
.cookie-category p strong {
  color: var(--coal-800);
  font-size: 0.85rem;
}
.cookie-category p a {
  color: var(--teal-600);
  text-decoration: underline;
}

.cookie-toggle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.cookie-toggle--locked {
  background: #E8F5E9;
  color: #2E7D32;
}

/* Switch toggle (para categoria marketing) */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch__slider {
  position: absolute;
  inset: 0;
  background: var(--coal-300);
  border-radius: 26px;
  transition: background .25s;
  cursor: pointer;
}
.cookie-switch__slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--teal-500);
}
.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(22px);
}
.cookie-switch input:focus-visible + .cookie-switch__slider {
  outline: 3px solid var(--teal-200);
  outline-offset: 2px;
}

.cookie-modal__opt-out {
  background: #FFF8E7;
  border-left: 3px solid var(--orange-400);
  padding: 12px 14px;
  border-radius: 4px;
  margin: 16px 0 20px;
}
.cookie-modal__opt-out p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--coal-700);
  margin: 0;
}
.cookie-modal__opt-out a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-modal__actions .cookie-btn { flex: 1; min-width: 160px; }

/* ============ FAIXA PROMOCIONAL — TOPO ============ */
.promo-bar {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 100%);
  color: #fff;
  position: relative;
  z-index: 60;
  overflow: hidden;
  max-height: 200px;
  transition: max-height .3s var(--ease), opacity .3s var(--ease);
}
.promo-bar.is-closing {
  max-height: 0;
  opacity: 0;
}
.promo-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 48px 10px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-bar__emoji {
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}
.promo-bar__text {
  font-size: 0.92rem;
  margin: 0;
  color: #fff;
  line-height: 1.3;
}
.promo-bar__text strong {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.promo-bar__sep {
  margin: 0 8px;
  opacity: .6;
}
.promo-bar__sub strong {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  font-family: 'Courier New', monospace;
}
.promo-bar__cta {
  background: #fff;
  color: var(--orange-600, #C77700);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.promo-bar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.promo-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.2);
  border: 0;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.promo-bar__close:hover {
  background: rgba(255,255,255,.35);
}

@media (max-width: 680px) {
  .promo-bar__inner {
    padding: 9px 40px 9px 12px;
    gap: 8px;
  }
  .promo-bar__text {
    font-size: 0.82rem;
    text-align: center;
    flex: 1 1 100%;
  }
  .promo-bar__sep { display: none; }
  .promo-bar__sub {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
  }
  .promo-bar__cta {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  .promo-bar__emoji { display: none; }
}

/* Indicador "Ofertas" no menu com destaque visual */
.nav-primary__promo {
  color: var(--orange-500) !important;
  font-weight: 700 !important;
  position: relative;
}
.nav-primary__promo::before {
  content: '🎁';
  margin-right: 4px;
  font-size: 0.9em;
}
.mobile-menu__promo {
  color: var(--orange-500) !important;
  font-weight: 700 !important;
}

/* ============ SEÇÃO DE OFERTAS ============ */
.promo-section {
  background: linear-gradient(180deg, var(--cream-50) 0%, #fff 100%);
  padding: 80px 0 64px;
}
.promo-section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.promo-section__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 14px;
  color: var(--coal-900);
}
.promo-section__header p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--coal-700);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.promo-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.promo-card--entry {
  border-color: var(--teal-300);
  background: linear-gradient(180deg, #fff 0%, var(--teal-50, #F0F9FA) 100%);
}
.promo-card--plan {
  border-color: var(--orange-300);
  background: linear-gradient(180deg, #fff 0%, #FFF8E7 100%);
}

.promo-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal-500);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.promo-card__badge--orange { background: var(--orange-500); }

.promo-card__body {
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.promo-card__eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--coal-600);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  padding-right: 100px; /* espaço para badge */
}

.promo-card__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 4px 0 8px;
}
.promo-card__price-from {
  font-size: 0.88rem;
  color: var(--coal-600);
  font-style: italic;
}
.promo-card__price-from s {
  color: var(--coal-500);
  margin-right: 4px;
}
.promo-card__price-main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.promo-card__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--coal-900);
  margin-top: 10px;
  font-family: var(--font-display);
}
.promo-card__value {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--coal-900);
  font-family: var(--font-display);
  line-height: 0.95;
}
.promo-card--entry .promo-card__value { color: var(--teal-600); }
.promo-card--plan .promo-card__value { color: var(--orange-600, #C77700); }
.promo-card__price-note {
  font-size: 0.9rem;
  color: var(--coal-700);
  margin-top: 6px;
}
.promo-card__price-note strong { color: var(--coal-900); }

.promo-card__desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--coal-700);
  margin: 4px 0 0;
}

.promo-card__code {
  background: #fff;
  border: 2px dashed var(--teal-400);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
}
.promo-card__code-label {
  font-size: 0.78rem;
  color: var(--coal-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.promo-card__code-value {
  font-family: 'Courier New', monospace;
  font-size: 1.05rem;
  color: var(--teal-700);
  letter-spacing: 1px;
  font-weight: 700;
}

.promo-card__benefits {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.promo-card__benefits li {
  font-size: 0.92rem;
  color: var(--coal-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.promo-card__benefits li span {
  color: var(--orange-500);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.promo-card__cta {
  background: var(--teal-500);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .25s var(--ease);
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(31, 168, 181, 0.25);
}
.promo-card__cta:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 168, 181, 0.35);
}
.promo-card__cta svg { width: 18px; height: 18px; }
.promo-card__cta--orange {
  background: var(--orange-500);
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.3);
}
.promo-card__cta--orange:hover {
  background: var(--orange-600, #C77700);
  box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.promo-card__fine-print {
  font-size: 0.78rem;
  color: var(--coal-500);
  line-height: 1.5;
  margin: 8px 0 0;
  font-style: italic;
}
