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

    :root {
      --chocolate: #3D2B1F;
      --chocolate-light: #5C3D2E;
      --gold: #C9A96E;
      --gold-light: #DFC28B;
      --gold-dark: #A8864A;
      --cream: #E8E0D4;
      --cream-dark: #DDD4C6;
      --rose: #D4A5A5;
      --rose-soft: #E8C5C5;
      --warm-white: #F0EBE3;
      --text-dark: #2C1810;
      --text-body: #3E2A1E;
      --text-muted: #6B5847;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Cormorant Garamond', Georgia, serif;
      color: var(--text-body);
      background-color: var(--warm-white);
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* Screen reader only */
    .sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

    /* Noise texture removida — melhora Lighthouse TBT/LCP */

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
      will-change: auto;
    }

    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }
    .reveal-delay-4 { transition-delay: 0.6s; }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-8px); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4); }
      50% { box-shadow: 0 0 0 12px rgba(201, 169, 110, 0); }
    }

    @keyframes whatsappPulse {
      0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
      50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.1); }
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════════
       WHATSAPP CTA BUTTON
    ══════════════════════════════════════ */
    .cta-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 42px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
      background-size: 200% auto;
      color: var(--chocolate);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      border-radius: 0;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      animation: pulseGlow 2.5s infinite;
    }

    .cta-whatsapp::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s ease;
    }

    .cta-whatsapp:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
      background-position: right center;
    }

    .cta-whatsapp:hover::before {
      left: 100%;
    }

    .cta-whatsapp svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    .cta-whatsapp--large {
      padding: 22px 56px;
      font-size: 1rem;
      letter-spacing: 3px;
    }

    /* ══════════════════════════════════════
       SECTION CONTAINERS
    ══════════════════════════════════════ */
    .section {
      padding: 100px 24px;
      position: relative;
    }

    .section--cream { background: var(--cream); }
    .section--dark {
      background: linear-gradient(175deg, var(--chocolate) 0%, #2C1810 100%);
      color: var(--cream);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* ══════════════════════════════════════
       TYPOGRAPHY
    ══════════════════════════════════════ */
    .section-label {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      font-size: 0.75rem;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 400;
      font-size: clamp(2rem, 4vw, 2.8rem);
      line-height: 1.25;
      color: var(--text-dark);
      margin-bottom: 20px;
    }

    .section--dark .section-title {
      color: var(--cream);
    }

    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .gold-divider {
      width: 80px;
      height: 1px;
      background: var(--gold);
      margin: 28px 0;
      position: relative;
    }

    .gold-divider::after {
      content: '\25C7';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: var(--cream);
      padding: 0 12px;
      font-size: 8px;
      color: var(--gold);
    }

    .section--cream .gold-divider::after { background: var(--cream); }
    .section--dark .gold-divider::after { background: var(--chocolate); }

    /* ══════════════════════════════════════
       HERO SECTION — FULL IMPACT
    ══════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      background: linear-gradient(175deg, #1A110B 0%, var(--chocolate) 40%, #2C1810 100%);
      overflow: hidden;
    }

    /* ambient glow — gold top */
    .hero::before {
      content: '';
      position: absolute;
      top: -15%;
      left: 50%;
      transform: translateX(-50%);
      width: 800px; height: 800px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,169,110,0.10) 0%, transparent 65%);
      pointer-events: none;
      animation: glowPulse 6s ease-in-out infinite;
    }

    /* ambient glow — rose bottom */
    .hero::after {
      content: '';
      position: absolute;
      bottom: -20%; right: -10%;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,165,165,0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 3;
      text-align: center;
      max-width: 900px;
      padding: 0 24px;
      margin-bottom: 56px;
    }

    .hero__badge {
      display: inline-block;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      font-size: 0.7rem;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,169,110,0.35);
      padding: 10px 32px;
      margin-bottom: 36px;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .hero__title {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 500;
      font-size: clamp(2.8rem, 6.5vw, 4.8rem);
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 8px;
      animation: fadeInUp 1s ease 0.4s both;
    }

    .hero__title em {
      font-style: italic;
      background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }

    .hero__title-accent {
      display: block;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 300;
      font-size: clamp(0.8rem, 1.5vw, 1rem);
      letter-spacing: 8px;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.7;
      margin-top: 16px;
      animation: fadeInUp 1s ease 0.6s both;
    }

    .hero__subtitle {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.1rem, 2.2vw, 1.4rem);
      font-weight: 300;
      color: rgba(240, 235, 227, 0.6);
      max-width: 580px;
      margin: 28px auto 44px;
      line-height: 1.8;
      animation: fadeInUp 1s ease 0.8s both;
    }

    .hero__cta {
      animation: fadeInUp 1s ease 1s both;
    }

    /* ── Hero Photo Strip ── */
    .hero__photo-strip {
      position: relative;
      z-index: 2;
      width: 100%;
      overflow: hidden;
      padding: 12px 0;
    }

    .hero__photo-strip::before,
    .hero__photo-strip::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 120px;
      z-index: 4;
      pointer-events: none;
    }

    .hero__photo-strip::before {
      left: 0;
      background: linear-gradient(to right, #2C1810, transparent);
    }

    .hero__photo-strip::after {
      right: 0;
      background: linear-gradient(to left, #2C1810, transparent);
    }

    .hero__photos-track {
      display: flex;
      gap: 20px;
      animation: marquee 45s linear infinite;
      width: max-content;
    }

    .hero__photos-track:hover {
      animation-play-state: paused;
    }

    .hero__photo {
      flex-shrink: 0;
      width: 150px;
      height: 150px;
      object-fit: cover;
      border: 2px solid rgba(201,169,110,0.2);
      opacity: 0.85;
      transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
      filter: saturate(0.9);
    }

    .hero__photo:hover {
      opacity: 1;
      border-color: var(--gold);
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      filter: saturate(1.1);
    }

    /* ── Scroll Hint ── */
    .hero__scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(201,169,110,0.5);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      z-index: 5;
      animation: float 3s ease-in-out infinite;
    }

    .hero__scroll-hint span {
      width: 1px;
      height: 28px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      opacity: 0.5;
    }

    /* ══════════════════════════════════════
       STORY / ABOUT SECTION
    ══════════════════════════════════════ */
    .story {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .story__image-frame {
      position: relative;
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: 4px;
      box-shadow:
        0 25px 60px rgba(61, 43, 31, 0.15),
        0 8px 20px rgba(61, 43, 31, 0.08);
    }

    .story__image-frame::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(201,169,110,0.35);
      z-index: 2;
      pointer-events: none;
      border-radius: 2px;
    }

    .story__image-frame::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(44, 24, 16, 0.15) 100%
      );
      z-index: 1;
      pointer-events: none;
    }

    .story__image-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
      transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .story__image-frame:hover img {
      transform: scale(1.04);
    }

    .story__text p {
      font-size: 1.15rem;
      margin-bottom: 24px;
      color: var(--text-body);
    }

    .story__text p:first-of-type::first-letter {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      float: left;
      line-height: 0.8;
      margin-right: 10px;
      margin-top: 6px;
      color: var(--gold);
    }

    .story__signature {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.6rem;
      color: var(--gold);
      margin-top: 32px;
    }

    /* ══════════════════════════════════════
       PRODUCT SHOWCASE
    ══════════════════════════════════════ */
    .showcase__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
      margin-top: 60px;
    }

    .showcase__item {
      position: relative;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }



    .showcase__image {
      aspect-ratio: 1/1;
      background: var(--warm-white);
      border: 1px solid rgba(201,169,110,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-radius: 4px;
      transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .showcase__item:hover .showcase__image {
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(61, 43, 31, 0.12);
      transform: translateY(-6px);
    }

    .showcase__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .showcase__item:hover .showcase__image img {
      transform: scale(1.05);
    }

    .showcase__image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(61,43,31,0.06));
      pointer-events: none;
    }

    .showcase__name {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--text-dark);
      margin: 18px 0 6px;
    }

    .showcase__desc {
      font-size: 0.95rem;
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.6;
      padding: 0 4px;
    }

    .showcase__tag {
      display: inline-block;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.55rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-dark);
      border: 1px solid var(--gold);
      padding: 3px 12px;
      margin-top: 12px;
    }

    .showcase__order-btn {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: auto;
      padding: 6px 14px;
      background: #25D366;
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.55rem;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .showcase__order-btn:hover {
      background: #1da851;
      transform: translateY(-2px);
      box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    }

    .showcase__order-btn svg {
      width: 12px;
      height: 12px;
      fill: #fff;
    }


    .showcase__price {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--gold-dark);
      margin: 8px 0 4px;
    }
    .showcase__cta-wrapper {
      text-align: center;
      margin-top: 64px;
    }

    /* ══════════════════════════════════════
       MEANING BANNER
    ══════════════════════════════════════ */
    .meaning-banner {
      background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
      padding: 56px 24px;
      text-align: center;
      border-top: 1px solid rgba(201,169,110,0.15);
      border-bottom: 1px solid rgba(201,169,110,0.15);
    }

    .meaning-banner__text {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--text-body);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .meaning-banner__text em {
      color: var(--gold);
      font-style: italic;
    }

    /* ══════════════════════════════════════
       BENEFITS SECTION
    ══════════════════════════════════════ */
    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 48px;
      margin-top: 60px;
    }

    .benefit {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .benefit__icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(201,169,110,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.4rem;
      position: relative;
    }

    .benefit__icon::after {
      content: '';
      position: absolute;
      inset: 3px;
      border: 1px solid rgba(201,169,110,0.12);
    }

    .benefit__title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      color: var(--cream);
      margin-bottom: 6px;
    }

    .benefit__text {
      font-size: 1rem;
      color: rgba(250, 246, 240, 0.6);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ══════════════════════════════════════
       TESTIMONIALS
    ══════════════════════════════════════ */
    .testimonials__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 60px;
    }

    .testimonial {
      background: var(--warm-white);
      padding: 40px 32px;
      position: relative;
      border: 1px solid rgba(201,169,110,0.1);
      transition: all 0.4s ease;
    }

    .testimonial:hover {
      border-color: var(--gold);
      box-shadow: 0 16px 48px rgba(61, 43, 31, 0.06);
    }

    .testimonial__stars {
      color: var(--gold);
      font-size: 0.85rem;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .testimonial__text {
      font-size: 1.05rem;
      font-style: italic;
      color: var(--text-body);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .testimonial__author {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .testimonial__avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border: 1px solid rgba(201,169,110,0.2);
      overflow: hidden;
    }

    .testimonial__avatar svg {
      opacity: 0.3;
    }

    .testimonial__name {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-dark);
    }

    .testimonial__location {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 300;
    }

    /* ══════════════════════════════════════
       FINAL CTA SECTION
    ══════════════════════════════════════ */
    .final-cta {
      text-align: center;
      padding: 120px 24px;
      background:
        linear-gradient(175deg, #2C1810 0%, var(--chocolate) 50%, #3D2B1F 100%);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .final-cta__ornament {
      font-size: 2rem;
      color: var(--gold);
      opacity: 0.4;
      margin-bottom: 32px;
      letter-spacing: 12px;
    }

    .final-cta__title {
      font-family: 'Playfair Display', serif;
      font-weight: 400;
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: var(--cream);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .final-cta__title em {
      font-style: italic;
      color: var(--gold);
    }

    .final-cta__subtitle {
      font-size: 1.2rem;
      color: rgba(250,246,240,0.55);
      font-weight: 300;
      max-width: 550px;
      margin: 0 auto 48px;
      line-height: 1.8;
    }

    .final-cta__phone {
      display: block;
      margin-top: 24px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.75rem;
      letter-spacing: 3px;
      color: rgba(250,246,240,0.35);
    }

    /* ══════════════════════════════════════
       PRODUCT MODAL
    ══════════════════════════════════════ */
    .pmodal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26,17,11,0.75);
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 16px;
      backdrop-filter: blur(4px);
    }
    .pmodal-overlay.open { display: flex; }

    .pmodal {
      background: var(--warm-white);
      border-radius: 8px;
      width: 100%;
      max-width: 780px;
      max-height: 92vh;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      animation: modalIn 0.3s cubic-bezier(0.22,1,0.36,1);
    }

    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.94) translateY(20px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .pmodal__img-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 8px 0 0 8px;
      background: #f5f0e8;
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pmodal__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      padding: 16px;
    }

    .pmodal__body {
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
    }

    .pmodal__tag {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.6rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-dark);
      border: 1px solid var(--gold);
      padding: 3px 12px;
      display: inline-block;
      margin-bottom: 16px;
      align-self: flex-start;
    }

    .pmodal__name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .pmodal__divider {
      width: 48px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 16px;
    }

    .pmodal__desc {
      font-size: 1.05rem;
      color: var(--text-body);
      line-height: 1.8;
      margin-bottom: 20px;
      flex: 1;
    }

    .pmodal__price {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: var(--gold-dark);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .pmodal__encomenda-note {
      background: rgba(201,169,110,0.08);
      border-left: 3px solid var(--gold);
      padding: 12px 16px;
      margin-bottom: 24px;
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .pmodal__encomenda-note strong {
      color: var(--text-dark);
      display: block;
      margin-bottom: 2px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .pmodal__btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      background: #25D366;
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      margin-bottom: 12px;
    }

    .pmodal__btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }

    .pmodal__btn-enc {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      background: transparent;
      color: var(--gold-dark);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      border: 1.5px solid var(--gold);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .pmodal__btn-enc:hover { background: var(--gold); color: #fff; }

    .pmodal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      background: rgba(61,43,31,0.12);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--text-dark);
      transition: background 0.2s;
      z-index: 10;
    }
    .pmodal__close:hover { background: rgba(61,43,31,0.25); }

    /* ── Mini Frete no Modal ── */
    .pmodal__frete {
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(201,169,110,0.2);
    }

    .pmodal__frete-title {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
      font-weight: 500;
    }

    .pmodal__frete-row {
      display: flex;
      gap: 8px;
    }

    .pmodal__frete-input {
      flex: 1;
      padding: 10px 14px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.9rem;
      letter-spacing: 2px;
      border: 1px solid rgba(201,169,110,0.3);
      background: rgba(201,169,110,0.04);
      color: var(--text-dark);
      border-radius: 4px;
      outline: none;
      transition: border-color 0.3s;
    }

    .pmodal__frete-input::placeholder {
      color: var(--text-muted);
      opacity: 0.5;
    }

    .pmodal__frete-input:focus {
      border-color: var(--gold);
    }

    .pmodal__frete-btn {
      padding: 10px 20px;
      background: var(--chocolate);
      color: var(--gold-light);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 500;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .pmodal__frete-btn:hover {
      background: var(--chocolate-light);
    }

    .pmodal__frete-error {
      display: none;
      margin-top: 8px;
      font-size: 0.82rem;
      color: #c0392b;
      padding: 8px 12px;
      background: rgba(192,57,43,0.06);
      border-radius: 4px;
    }

    .pmodal__frete-error.show { display: block; }

    .pmodal__frete-result {
      display: none;
      margin-top: 12px;
    }

    .pmodal__frete-result.show { display: block; }

    .pmodal__frete-dest {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.65rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .pmodal__frete-dest strong { color: var(--gold-dark); }

    .pmodal__frete-options {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .pmodal__frete-opt {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: rgba(201,169,110,0.06);
      border: 1px solid rgba(201,169,110,0.12);
      border-radius: 4px;
      font-size: 0.82rem;
      color: var(--text-body);
    }

    .pmodal__frete-dias {
      font-size: 0.72rem;
      color: var(--text-muted);
    }

    .pmodal__frete-opt strong {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--gold-dark);
    }

    .showcase__item { cursor: pointer; }
    .showcase__image { position: relative; }
    .showcase__image::before {
      content: '🔍 Ver detalhes';
      position: absolute;
      inset: 0;
      background: rgba(61,43,31,0.55);
      color: #fff;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 2;
    }
    .showcase__item:hover .showcase__image::before { opacity: 1; }

    @media (max-width: 680px) {
      .pmodal { grid-template-columns: 1fr; max-width: 420px; }
      .pmodal__img-wrap { min-height: 260px; border-radius: 8px 8px 0 0; }
      .pmodal__body { padding: 24px 20px; }
    }

    /* ══════════════════════════════════════
       FRETE CALCULATOR
    ══════════════════════════════════════ */
    .frete {
      background: var(--chocolate);
      padding: 80px 24px;
      color: #fff;
    }

    .frete__wrap {
      max-width: 560px;
      margin: 0 auto;
      text-align: center;
    }

    .frete__icon {
      font-size: 2.2rem;
      margin-bottom: 12px;
      display: block;
    }

    .frete__title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 500;
      margin-bottom: 8px;
      color: #fff;
    }

    .frete__title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .frete__sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 36px;
      line-height: 1.6;
    }

    .frete__form {
      display: flex;
      gap: 12px;
      margin-bottom: 12px;
    }

    .frete__input {
      flex: 1;
      padding: 16px 20px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.05rem;
      letter-spacing: 2px;
      border: 1px solid rgba(201,169,110,0.3);
      background: rgba(255,255,255,0.06);
      color: #fff;
      border-radius: 4px;
      outline: none;
      transition: border-color 0.3s;
    }

    .frete__input::placeholder {
      color: rgba(255,255,255,0.35);
      letter-spacing: 3px;
    }

    .frete__input:focus {
      border-color: var(--gold);
    }

    .frete__btn {
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold));
      color: var(--chocolate);
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 500;
      font-size: 0.8rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s;
      white-space: nowrap;
    }

    .frete__btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,169,110,0.3);
    }

    .frete__btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }

    .frete__link {
      display: block;
      margin-top: 4px;
      margin-bottom: 24px;
      text-align: right;
    }

    .frete__link a {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.68rem;
      letter-spacing: 1px;
      color: rgba(255,255,255,0.4);
      text-decoration: underline;
      transition: color 0.3s;
    }

    .frete__link a:hover { color: var(--gold-light); }

    .frete__result {
      display: none;
      margin-top: 8px;
      text-align: left;
    }

    .frete__result.show { display: block; }

    .frete__dest {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .frete__dest strong {
      color: var(--gold-light);
    }

    .frete__option {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 6px;
      margin-bottom: 10px;
      transition: border-color 0.3s;
    }

    .frete__option:hover {
      border-color: rgba(201,169,110,0.4);
    }

    .frete__option-name {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #fff;
      font-weight: 500;
    }

    .frete__option-days {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      margin-top: 2px;
    }

    .frete__option-price {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--gold-light);
      font-weight: 600;
      white-space: nowrap;
    }

    .frete__error {
      display: none;
      background: rgba(220,53,69,0.12);
      border: 1px solid rgba(220,53,69,0.3);
      border-radius: 6px;
      padding: 14px 20px;
      margin-top: 8px;
      font-size: 0.92rem;
      color: #f8a4a4;
      text-align: center;
    }

    .frete__error.show { display: block; }

    .frete__free-note {
      text-align: center;
      margin-top: 16px;
      padding: 12px;
      background: rgba(201,169,110,0.08);
      border: 1px solid rgba(201,169,110,0.2);
      border-radius: 6px;
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 1.5px;
      color: var(--gold-light);
      text-transform: uppercase;
    }

    @media (max-width: 480px) {
      .frete { padding: 60px 16px; }
      .frete__form { flex-direction: column; }
      .frete__btn { width: 100%; padding: 14px; }
      .frete__link { text-align: center; }
    }

    /* ══════════════════════════════════════
       ENCOMENDAS SECTION
    ══════════════════════════════════════ */
    .encomendas {
      background: var(--warm-white);
      padding: 100px 24px;
    }

    .encomendas__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: start;
      margin-top: 60px;
    }

    .encomendas__info-list {
      list-style: none;
      margin: 32px 0;
    }

    .encomendas__info-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
      font-size: 1.05rem;
      color: var(--text-body);
      line-height: 1.6;
    }

    .encomendas__icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201,169,110,0.35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--gold);
      margin-top: 2px;
    }

    .encomendas__ideal {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 32px;
      padding-top: 24px;
      border-top: 1px solid rgba(201,169,110,0.15);
    }

    .encomendas__ideal span {
      display: inline-block;
      background: var(--cream);
      border: 1px solid rgba(201,169,110,0.25);
      padding: 5px 14px;
      border-radius: 20px;
      margin: 6px 4px 0;
      font-size: 0.68rem;
    }

    /* FORM */
    .encomendas__form-card {
      background: #fff;
      border: 1px solid rgba(201,169,110,0.15);
      border-radius: 8px;
      padding: 40px 36px;
      box-shadow: 0 8px 40px rgba(61,43,31,0.07);
    }

    .encomendas__form-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .encomendas__form-sub {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .form-field.full { grid-column: 1/-1; }

    .form-field label {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
      padding: 12px 14px;
      border: 1.5px solid rgba(201,169,110,0.25);
      border-radius: 4px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      color: var(--text-body);
      background: var(--warm-white);
      transition: border-color 0.2s;
    }

    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-field textarea {
      resize: vertical;
      min-height: 90px;
    }

    .form-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 20px;
      padding: 12px 16px;
      background: rgba(201,169,110,0.06);
      border-left: 3px solid var(--gold);
      line-height: 1.6;
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 32px;
    }

    .form-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }
    .form-success h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.3rem;
      color: var(--text-dark);
      margin-bottom: 8px;
    }
    .form-success p { font-size: 0.95rem; color: var(--text-muted); }

    @media (max-width: 900px) {
      .encomendas__grid { grid-template-columns: 1fr; gap: 48px; }
    }

    @media (max-width: 600px) {
      .encomendas { padding: 60px 16px; }
      .encomendas__form-card { padding: 28px 20px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    .footer {
      text-align: center;
      padding: 40px 24px;
      background: #1A110B;
      color: rgba(250,246,240,0.65);
      font-family: 'Josefin Sans', sans-serif;
      font-size: 0.7rem;
      letter-spacing: 2px;
    }

    /* ══════════════════════════════════════
       FLOATING WHATSAPP
    ══════════════════════════════════════ */
    .floating-whatsapp {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 1000;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
      transition: all 0.3s ease;
      animation: whatsappPulse 2s infinite;
      text-decoration: none;
    }

    .floating-whatsapp:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    .floating-whatsapp svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 1024px) {
      .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 900px) {
      .hero__photo {
        width: 155px;
        height: 155px;
      }

      .story {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .story__image-frame {
        max-width: 400px;
        margin: 0 auto;
      }

      .benefits__grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .section { padding: 72px 20px; }
    }

    @media (max-width: 768px) {
      .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonial { padding: 28px 20px; }

      .hero__title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
      }

      .hero__title-accent {
        font-size: clamp(0.75rem, 2.5vw, 0.95rem);
        letter-spacing: 3px;
      }

      .hero__subtitle {
        font-size: 1.15rem;
        margin: 20px auto 32px;
      }
    }

    @media (max-width: 600px) {
      .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
      }

      .showcase__name { font-size: 1rem; }
      .showcase__desc { font-size: 0.88rem; }
      .showcase__tag { font-size: 0.6rem; padding: 3px 9px; }
      .showcase__order-btn { font-size: 0.6rem; padding: 7px 10px; width: 100%; justify-content: center; }

      .hero__badge {
        margin-bottom: 16px;
        font-size: 0.75rem;
        letter-spacing: 3px;
        padding: 9px 20px;
      }

      .hero__photo {
        width: 150px;
        height: 150px;
      }

      .hero__photos-track { gap: 14px; }

      .cta-whatsapp {
        padding: 16px 28px;
        font-size: 0.75rem;
        letter-spacing: 2px;
        width: 100%;
        justify-content: center;
        max-width: 360px;
      }

      .cta-whatsapp--large {
        padding: 18px 32px;
        font-size: 0.82rem;
      }

      .section { padding: 56px 16px; }

      .benefit { gap: 16px; }
      .benefit__icon { width: 44px; height: 44px; font-size: 1.1rem; }
      .benefit__title { font-size: 1.05rem; }
      .benefit__text { font-size: 0.9rem; }

      .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

      .story__text p { font-size: 1rem; }
      .story__signature { font-size: 1.3rem; }

      .meaning-banner { padding: 40px 16px; }
      .meaning-banner__text { font-size: 1.05rem; }

      .final-cta { padding: 80px 16px; }
      .final-cta__title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
      .final-cta__subtitle { font-size: 1rem; margin-bottom: 36px; }

      .floating-whatsapp { width: 52px; height: 52px; bottom: 20px; right: 20px; }
      .floating-whatsapp svg { width: 26px; height: 26px; }
    }

    @media (max-width: 380px) {
      .showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

      .showcase__name { font-size: 0.85rem; }
      .showcase__desc { font-size: 0.75rem; display: none; }

      .hero__title { font-size: 2.1rem; }
      .hero__subtitle { font-size: 1.05rem; }

      .cta-whatsapp { padding: 14px 20px; font-size: 0.7rem; }

      .section { padding: 44px 12px; }
    }

    /* ══════════════════════════════════════════
       MENU DE NAVEGACAO (adicionado 2026-07-17)
       z-index 400 = abaixo do .pmodal-overlay (500)
       e do .floating-whatsapp (1000) de proposito.
    ══════════════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 400;
      height: 72px;
      display: flex;
      align-items: center;
      /* verde musgo SEMPRE visivel (inclusive no topo do hero) */
      background: rgba(59,74,58,0.96);   /* verde musgo (#3B4A3A) */
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(201,169,110,0.22);
      box-shadow: 0 4px 28px rgba(26,17,11,0.28);
      transition: box-shadow .4s ease;
    }
    /* Ao rolar, so reforca a sombra (a cor ja esta sempre la) */
    .nav.is-scrolled {
      box-shadow: 0 6px 34px rgba(26,17,11,0.34);
    }
    .nav__inner {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav__logo {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 500;
      font-size: 1.25rem;
      color: var(--cream);
      letter-spacing: .5px;
      text-decoration: none;
      white-space: nowrap;
    }
    .nav__logo { transition: color .4s ease; }
    .nav__logo em { font-style: italic; color: var(--gold); transition: color .4s ease; }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav__links a {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 500;
      font-size: 0.75rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(245,240,232,0.95);
      text-decoration: none;
      padding: 8px 0;
      display: block;
      transition: color .3s ease;
    }
    .nav__links a::after {
      content: '';
      display: block;
      height: 1px;
      width: 0;
      margin-top: 5px;
      background: var(--gold);
      transition: width .4s cubic-bezier(.22,1,.36,1);
    }
    .nav__links a:hover,
    .nav__links a[aria-current="page"] { color: var(--gold); }
    .nav__links a:hover::after,
    .nav__links a[aria-current="page"]::after { width: 100%; }
    .nav a:focus-visible,
    .nav__burger:focus-visible {
      outline: 1px solid var(--gold);
      outline-offset: 4px;
    }

    /* Botao hamburguer — hairline 1px, igual ao resto do site */
    .nav__burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 5px;
      width: 44px; height: 44px;
      background: none; border: none;
      cursor: pointer; padding: 0;
    }
    .nav__burger span {
      display: block;
      width: 24px; height: 1px;
      background: var(--gold);
      transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .25s ease, width .4s ease;
    }
    .nav__burger span:nth-child(2) { width: 18px; }
    body.nav-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
    body.nav-open .nav__burger span:nth-child(3) { width: 24px; transform: translateY(-6px) rotate(-45deg); }

    /* Gaveta de tela cheia no celular */
    .nav__drawer {
      position: fixed;
      inset: 0;
      z-index: 399;
      background: linear-gradient(175deg, #1A110B 0%, var(--chocolate) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* safe center: no celular deitado o conteudo estoura; sem isso o topo
         fica inalcancavel porque o scroll do body esta travado */
      justify-content: safe center;
      gap: 26px;
      overflow-y: auto;
      padding: 76px 24px 40px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .45s cubic-bezier(.22,1,.36,1), visibility .45s;
    }
    body.nav-open .nav__drawer { opacity: 1; visibility: visible; }
    .nav__drawer a {
      font-family: 'Playfair Display', Georgia, serif;
      font-weight: 400;
      font-size: 1.5rem;
      color: var(--cream);
      text-decoration: none;
      letter-spacing: 1px;
      transition: color .3s ease;
    }
    .nav__drawer a:hover,
    .nav__drawer a:active,
    .nav__drawer a[aria-current="page"] { color: var(--gold); }

    /* O botao dourado da gaveta NAO pode herdar o estilo dos links de texto,
       senao vira texto creme sobre fundo dourado (contraste ~1.7:1, ilegivel). */
    .nav__drawer a.cta-whatsapp,
    .nav__drawer a.cta-whatsapp:hover,
    .nav__drawer a.cta-whatsapp:active {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 2.5px;
      color: var(--chocolate);
    }
    .nav__drawer .nav__ornament {
      color: var(--gold);
      opacity: .4;
      font-size: 8px;
      letter-spacing: 8px;
    }
    body.nav-open .nav__drawer a { animation: fadeInUp .5s ease both; }
    body.nav-open .nav__drawer a:nth-of-type(1) { animation-delay: .08s; }
    body.nav-open .nav__drawer a:nth-of-type(2) { animation-delay: .13s; }
    body.nav-open .nav__drawer a:nth-of-type(3) { animation-delay: .18s; }
    body.nav-open .nav__drawer a:nth-of-type(4) { animation-delay: .23s; }
    body.nav-open .nav__drawer a:nth-of-type(5) { animation-delay: .28s; }

    /* Trava scroll do fundo e esconde o zap flutuante com o menu aberto */
    body.nav-open { overflow: hidden; }
    body.nav-open .floating-whatsapp,
    body.modal-open .floating-whatsapp {
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }

    /* Com a gaveta aberta a barra do topo some, senao fica uma emenda
       (fundo solido + borda + sombra) atravessada no degrade de tela cheia.
       Precisa vir DEPOIS de .nav.is-scrolled / body.no-hero .nav — mesma
       especificidade, quem vem por ultimo ganha. */
    body.nav-open .nav {
      background: transparent;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      border-bottom-color: transparent;
      box-shadow: none;
    }
    /* Gaveta aberta: barra transparente sobre a gaveta escura ->
       logo e "X" voltam a ser claros pra nao sumir. */
    body.nav-open .nav .nav__logo { color: var(--cream); }
    body.nav-open .nav .nav__logo em { color: var(--gold); }
    body.nav-open .nav .nav__burger span { background: var(--gold); }

    /* Paginas SEM hero: empurra o conteudo pra nao ficar atras do menu */
    body.no-hero main { padding-top: 72px; }

    /* Menu fixo esconderia o titulo ao pular pra uma ancora */
    section[id], .final-cta[id], div[id] { scroll-margin-top: 88px; }

    @media (max-width: 900px) {
      /* Celular SEM hamburguer: logo em cima, os 4 links numa linha
         centralizada embaixo (pedido Odair 17/07). */
      .nav { height: auto; }
      .nav__inner {
        flex-direction: column;
        align-items: center;
        gap: 7px;
        padding: 9px 12px;
      }
      .nav__links {
        display: flex;               /* mostra os links */
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .nav__links a {
        font-size: 0.64rem;
        letter-spacing: 1px;
        padding: 2px 0;
      }
      .nav__burger { display: none; } /* remove o hamburguer */
      body.no-hero main { padding-top: 86px; }
      section[id], .final-cta[id], div[id] { scroll-margin-top: 94px; }
    }
    @media (max-width: 360px) {
      /* telas bem estreitas: encolhe um tico mais pra caber em 1 linha */
      .nav__links { gap: 11px; }
      .nav__links a { font-size: 0.6rem; letter-spacing: 0.5px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .nav, .nav__drawer, .nav__links a::after, .nav__burger span { transition: none; }
      body.nav-open .nav__drawer a { animation: none; }
    }

    /* ══════════════════════════════════════════
       HERO mais baixo (pedido Odair 17/07: estava
       tomando a tela inteira / 100vh). Assim a loja
       aparece mais rapido. Override do CSS original.
    ══════════════════════════════════════════ */
    .hero { min-height: 40vh; padding-top: 88px; padding-bottom: 52px; }
    /* No celular o hero se ajusta ao texto (sem espaco escuro sobrando).
       padding-top folgado pra descolar o titulo do cabecalho. */
    @media (max-width: 900px) { .hero { min-height: auto; padding-top: 116px; padding-bottom: 44px; } }
    @media (max-width: 600px) { .hero { min-height: auto; padding-top: 108px; padding-bottom: 38px; } }

    /* ══════════════════════════════════════════
       ALINHAMENTO DOS CARDS DE PRODUTO (pedido Odair 17/07)
       Etiqueta (NOVIDADE / PECA UNICA) + botao WhatsApp descem
       juntos pro rodape do card, alinhados em TODOS os cards mesmo
       com descricoes de tamanhos diferentes. A altura fixa na
       descricao alinha tambem os precos.
    ══════════════════════════════════════════ */
    /* Descricao limitada a 3 linhas (com "..."): deixa TODOS os cards
       do mesmo tamanho, alinhando preco, etiqueta e botao. O texto
       completo continua aparecendo no modal do produto. */
    .showcase__desc {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      overflow: hidden;
      width: 100%;
      min-height: 4.8em;   /* 3 linhas */
    }
    .showcase__tag { display: none; }           /* etiqueta NOVIDADE/PECA UNICA removida (pedido Odair) */
    .showcase__order-btn { margin-top: auto; }  /* botao vai pro rodape do card */
    /* Em telas muito pequenas a descricao ja some (regra original em 380px);
       re-aplico o display:none pra o -webkit-box acima nao reverter isso. */
    @media (max-width: 380px) {
      .showcase__desc { display: none; }
    }
