  :root{
    --ivory: #fbf1ea;
    --ivory-2: #f4e3d8;
    --wine: #c48a93;
    --wine-deep: #2e2620;
    --amber: #c6a063;
    --amber-light: #ddc191;
    --moss: #9c6270;
    --ink: #2e2620;
    --taupe: #cbb9ac;
    --taupe-line: rgba(46,38,32,0.14);

    --serif: "Fraunces", serif;
    --sans: "Inter", sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --script: "Sacramento", cursive;

    --container: 1180px;
  }

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

  html{ scroll-behavior: smooth; }

  body{
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  a{ color: inherit; text-decoration: none; }
  ul{ list-style: none; }
  img, svg{ display:block; max-width:100%; }

  .wrap{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
  }

  .eyebrow{
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wine);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before{
    content: "";
    width: 22px;
    height: 1px;
    background: var(--amber);
    display: inline-block;
  }

  /* ---------- HEADER ---------- */
  header{
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(244,238,227,0.86);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--taupe-line);
  }
  .nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .logo{
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: inline-block;
  }
  .logo .amp{ color: var(--wine); font-weight: 400; }

  .nav-links{
    display:flex;
    gap: 34px;
    font-size: 14.5px;
    font-weight: 500;
  }
  .nav-links a{
    position: relative;
    padding: 4px 0;
    color: var(--ink);
    opacity: 0.82;
    transition: opacity .2s ease;
  }
  .nav-links a:hover{ opacity: 1; }
  .nav-links a::after{
    content:"";
    position:absolute;
    left:0; bottom:-2px;
    width:0%;
    height:1px;
    background: var(--wine);
    transition: width .25s ease;
  }
  .nav-links a:hover::after{ width:100%; }

  .nav-cta{
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    padding: 9px 18px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease;
  }
  .nav-cta:hover{ background: var(--ink); color: var(--ivory); }

  .lang-switch{
    display: flex;
    align-items: center;
    border: 1px solid var(--taupe-line);
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
  }
  .lang-btn{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 999px;
    color: rgba(46,38,32,0.55);
    transition: background .2s ease, color .2s ease;
  }
  .lang-btn.active{
    background: var(--wine-deep);
    color: var(--ivory);
  }
  .mobile-lang-switch{
    display: flex;
    gap: 8px;
    padding: 14px 0 10px;
    border-bottom: 1px solid var(--taupe-line);
    margin-bottom: 4px;
  }
  .mobile-lang-switch .lang-btn{
    border: 1px solid var(--taupe-line);
    flex: 1;
    text-align: center;
    padding: 9px 0;
  }

  .burger{
    display:none;
    flex-direction: column;
    gap: 5px;
    background:none;
    border:none;
    cursor:pointer;
    padding: 6px;
  }
  .burger span{
    width: 22px; height: 1.5px; background: var(--ink);
  }

  .mobile-nav{
    display:none;
    flex-direction: column;
    padding: 6px 32px 22px;
    gap: 4px;
    border-top: 1px solid var(--taupe-line);
  }
  .mobile-nav a{
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--taupe-line);
  }
  .mobile-nav.open{ display:flex; }

  /* ---------- HERO ---------- */
  .hero{
    position: relative;
    overflow: hidden;
    padding: 108px 32px 96px;
    text-align: center;
  }
  .hero-glow{
    position:absolute;
    top: -220px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(198,160,99,0.28) 0%, rgba(198,160,99,0.10) 38%, rgba(198,160,99,0) 70%);
    pointer-events: none;
    animation: diffuse 10s ease-in-out infinite;
  }
  @keyframes diffuse{
    0%, 100%{ opacity: .75; transform: translateX(-50%) scale(1); }
    50%{ opacity: 1; transform: translateX(-50%) scale(1.06); }
  }

  .hero-inner{
    position: relative;
    max-width: 760px;
    margin: 0 auto;
  }

  .hero .eyebrow{ justify-content:center; margin-bottom: 26px; }
  .hero .eyebrow::before{ display:none; }
  .hero .eyebrow::after{
    content:"";
    width: 22px; height:1px; background: var(--amber);
  }

  .hero-badge-wrap{
    position: relative;
    width: 168px;
    margin: 0 auto 28px;
  }

  .hero-badge{
    width: 168px;
    height: 168px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 22px 50px -18px rgba(46,38,32,0.35), 0 0 0 1px rgba(198,160,99,0.35);
    animation: badge-in .9s ease both;
  }
  .hero-badge img{ width:100%; height:100%; object-fit: cover; }

  @keyframes badge-in{
    from{ opacity:0; transform: translateY(-10px) scale(.96); }
    to{ opacity:1; transform: translateY(0) scale(1); }
  }

  /* Neblina de perfume — sai do bocal do frasco e borrifa para a direita */
  .mist{
    position: absolute;
    top: 24%;
    left: 53.8%;
    width: 0;
    height: 0;
    pointer-events: none;
  }

  /* Flash de disparo no bocal — dá o "impacto" do spray */
  .mist-flash{
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221,193,145,0.6) 0%, rgba(198,160,99,0.3) 45%, rgba(198,160,99,0) 75%);
    transform: translate(-50%,-50%) scale(0);
    animation: flash-pulse 3.4s ease-out infinite;
  }
  @keyframes flash-pulse{
    0%{   opacity: 0;   transform: translate(-50%,-50%) scale(.2); }
    8%{   opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
    28%{  opacity: 0;   transform: translate(-50%,-50%) scale(1.5); }
    100%{ opacity: 0;   transform: translate(-50%,-50%) scale(1.5); }
  }

  .mist-puff{
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226,199,152,0.75), rgba(198,160,99,0.3) 55%, rgba(198,160,99,0) 75%);
    opacity: 0;
    animation: mist-spray 3.4s cubic-bezier(.19,.66,.32,1) infinite;
  }
  /* --dx: alcance final para a direita (positivo, curto para não cruzar o "C" decorativo) | --dy: leve queda por gravidade | --sz: escala */
  .mist-puff.p1 { animation-delay: 0s;    --dx: 28px;  --dy: 4px;   --sz: 1.2; }
  .mist-puff.p2 { animation-delay: .22s;  --dx: 38px;  --dy: -8px;  --sz: 1.5; }
  .mist-puff.p3 { animation-delay: .40s;  --dx: 24px;  --dy: 10px;  --sz: 1;   }
  .mist-puff.p4 { animation-delay: .61s;  --dx: 44px;  --dy: -3px;  --sz: 1.3; }
  .mist-puff.p5 { animation-delay: .84s;  --dx: 32px;  --dy: 14px;  --sz: 1.6; }
  .mist-puff.p6 { animation-delay: 1.05s; --dx: 50px;  --dy: 2px;   --sz: 1.1; }
  .mist-puff.p7 { animation-delay: 1.27s; --dx: 30px;  --dy: -12px; --sz: 1.4; }
  .mist-puff.p8 { animation-delay: 1.53s; --dx: 40px;  --dy: 8px;   --sz: .9;  }
  .mist-puff.p9 { animation-delay: 1.74s; --dx: 22px;  --dy: -5px;  --sz: 1.2; }
  .mist-puff.p10{ animation-delay: 2.0s;  --dx: 48px;  --dy: 16px;  --sz: 1.5; }

  @keyframes mist-spray{
    /* jato fino a sair do bocal */
    0%{
      opacity: 0;
      filter: blur(0px);
      transform: translate(-50%,-50%) scale(calc(.25 * var(--sz))) scaleX(2.2);
    }
    8%{
      opacity: .8;
      filter: blur(0px);
      transform: translate(calc(-50% + 12px), -50%) scale(calc(.55 * var(--sz))) scaleX(1.8);
    }
    /* transforma-se em névoa e começa a dispersar */
    45%{
      opacity: .62;
      filter: blur(0.8px);
      transform: translate(calc(-50% + var(--dx) * 0.6), calc(-50% + var(--dy) * 0.5)) scale(calc(1.7 * var(--sz))) scaleX(1);
    }
    /* assenta ligeiramente por gravidade e desvanece */
    100%{
      opacity: 0;
      filter: blur(2.2px);
      transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(calc(3 * var(--sz))) scaleX(1);
    }
  }

  .hero-sign{
    margin-top: 30px;
    font-size: 15px;
    color: rgba(46,38,32,0.55);
  }
  .hero-sign .script{
    font-family: var(--script);
    font-size: 24px;
    color: var(--wine);
    margin-left: 2px;
  }

  h1.slogan{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--wine-deep);
  }
  h1.slogan em{
    font-style: italic;
    font-weight: 300;
    color: var(--wine);
  }

  .hero p.desc{
    margin: 26px auto 0;
    max-width: 520px;
    font-size: 16.5px;
    color: rgba(36,20,25,0.68);
  }

  .hero-actions{
    margin-top: 38px;
    display:flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--wine-deep);
    color: var(--ivory);
    padding: 15px 30px;
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
  }
  .btn-primary:hover{ background: var(--wine); transform: translateY(-2px); }

  .btn-ghost{
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 15px 22px;
    border-bottom: 1px solid var(--ink);
    transition: opacity .2s ease;
  }
  .btn-ghost:hover{ opacity: 0.6; }

  /* ---------- CATEGORIES ---------- */
  .categories{
    padding: 40px 32px 100px;
  }
  .cat-head{
    max-width: var(--container);
    margin: 0 auto 44px;
    display:flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .cat-head h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 40px);
    margin-top: 12px;
    color: var(--wine-deep);
  }
  .cat-head p{
    max-width: 360px;
    font-size: 14.5px;
    color: rgba(36,20,25,0.62);
    padding-bottom: 4px;
  }

  .cat-grid{
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .cat-card{
    position: relative;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
    padding: 26px 22px;
    background: var(--ivory-2);
    border: 1px solid var(--taupe-line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    opacity: 0;
    transform: translateY(18px);
  }
  .cat-card.in{ opacity: 1; transform: translateY(0); }

  .cat-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(196,144,60,0.16), rgba(196,144,60,0) 55%);
    opacity: 0;
    transition: opacity .3s ease;
  }
  .cat-card:hover{
    transform: translateY(-6px);
    border-color: var(--amber);
    box-shadow: 0 18px 40px -18px rgba(91,29,46,0.35);
  }
  .cat-card:hover::before{ opacity: 1; }

  .cat-num{
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.08em;
    color: var(--amber);
    position: relative;
    z-index: 1;
  }

  .cat-icon{
    width: 34px;
    height: 34px;
    margin: 18px 0 20px;
    position: relative;
    z-index: 1;
    color: var(--wine);
  }
  .cat-icon svg{ width:100%; height:100%; }

  .cat-body{ position: relative; z-index: 1; }
  .cat-title{
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 500;
    color: var(--wine-deep);
    margin-bottom: 8px;
  }
  .cat-desc{
    font-size: 13.5px;
    color: rgba(36,20,25,0.6);
    line-height: 1.5;
  }
  .cat-arrow{
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display:flex;
    align-items:center;
    gap: 8px;
    color: var(--ink);
    position: relative;
    z-index: 1;
  }
  .cat-arrow span{ transition: transform .25s ease; }
  .cat-card:hover .cat-arrow span{ transform: translateX(4px); }

  /* accent underline per card, subtle nod to fragrance family */
  .cat-card[data-fam="floral"]{ border-top: 3px solid var(--wine); }
  .cat-card[data-fam="woody"]{ border-top: 3px solid var(--amber); }
  .cat-card[data-fam="fresh"]{ border-top: 3px solid var(--moss); }
  .cat-card[data-fam="doce"]{ border-top: 3px solid var(--taupe); }

  /* ---------- RATINGS / REVIEWS ---------- */
  .reviews-summary{
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }
  .stars{ display:flex; gap: 3px; }
  .star{ width: 15px; height: 15px; }
  .star.full{ color: var(--amber); }
  .star.empty{ color: var(--taupe); }
  .reviews-summary-text{
    font-size: 13.5px;
    color: rgba(46,38,32,0.65);
  }
  .reviews-summary-text strong{ color: var(--wine-deep); }

  .reviews{
    padding: 72px 32px 100px;
  }
  .reviews-head{
    max-width: var(--container);
    margin: 0 auto 40px;
  }
  .reviews-head h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 40px);
    margin-top: 12px;
    color: var(--wine-deep);
  }
  .reviews-note{
    max-width: var(--container);
    margin: 0 auto 30px;
  }

  .reviews-grid{
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
  }
  .reviews-grid:has(.review-card:only-child){
    grid-template-columns: minmax(0, 420px);
  }
  .review-card{
    background: var(--ivory-2);
    border: 1px solid var(--taupe-line);
    border-radius: 4px;
    padding: 26px 24px;
    display:flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(18px);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .review-card.in{ opacity:1; transform: translateY(0); }
  .review-card:hover{
    border-color: var(--amber);
    box-shadow: 0 18px 40px -18px rgba(91,29,46,0.3);
  }
  .review-card .stars .star{ width: 14px; height: 14px; }
  .review-quote{
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink);
    flex-grow: 1;
  }
  .review-foot{
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--taupe-line);
  }
  .review-person{ display:flex; flex-direction:column; gap: 2px; }
  .review-name{ font-size: 13.5px; font-weight: 600; }
  .review-product{
    font-family: var(--mono);
    font-size: 11px;
    color: var(--wine);
    letter-spacing: 0.02em;
  }
  .review-badge{
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--moss);
    border: 1px solid var(--moss);
    border-radius: 999px;
    padding: 4px 9px;
    white-space: nowrap;
  }

  .reviews-loading, .reviews-empty{
    grid-column: 1 / -1;
    text-align: center;
    font-size: 14px;
    color: rgba(46,38,32,0.55);
    padding: 20px 0;
  }

  .review-form-wrap{
    max-width: 460px;
    margin: 48px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--taupe-line);
    text-align: center;
  }
  .review-form-wrap h3{
    font-family: var(--serif);
    font-weight: 500;
    font-size: 19px;
    color: var(--wine-deep);
    margin-bottom: 18px;
  }
  .review-form{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .review-form .btn-primary{
    border: none;
    cursor: pointer;
    margin-top: 4px;
  }
  .review-form .btn-primary:disabled{
    opacity: 0.6;
    cursor: not-allowed;
  }
  .review-form-msg{
    margin-top: 12px;
    font-size: 13.5px;
    color: var(--moss);
    display: none;
  }
  .review-form-msg.show{ display: block; }
  .review-form-msg.error{ color: #b3413c; }

  @media (max-width: 920px){
    .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  }

  /* ---------- NOTICE BAR ---------- */
  .notice-bar{
    background: var(--ivory-2);
    border-bottom: 1px solid var(--taupe-line);
    padding: 11px 32px;
  }
  .notice-inner{
    max-width: var(--container);
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    text-align: center;
  }
  .notice-inner svg{
    width: 14px;
    height: 14px;
    color: var(--wine);
    flex-shrink: 0;
  }
  .notice-inner p{
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(46,38,32,0.68);
    letter-spacing: 0.01em;
  }
  .notice-inner a{
    color: var(--wine);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .notice-close{
    background:none;
    border:none;
    cursor:pointer;
    font-family: var(--sans);
    font-size: 14px;
    color: rgba(46,38,32,0.4);
    line-height: 1;
    padding: 0 2px;
    position: absolute;
    right: 18px;
    transition: color .2s ease;
  }
  .notice-close:hover{ color: var(--wine); }
  .notice-bar{ position: relative; }

  /* ---------- DISCLAIMER SECTION ---------- */
  .disclaimer{
    padding: 70px 32px;
    background: var(--ivory-2);
    border-top: 1px solid var(--taupe-line);
    border-bottom: 1px solid var(--taupe-line);
  }
  .disclaimer-inner{
    max-width: 780px;
    margin: 0 auto;
  }
  .disclaimer-icon{
    width: 40px;
    height: 40px;
    color: var(--wine);
    margin-bottom: 20px;
  }
  .disclaimer h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--wine-deep);
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .disclaimer p{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(36,20,25,0.75);
    margin-bottom: 14px;
  }
  .disclaimer strong{ color: var(--wine-deep); }

  /* ---------- MODAL ---------- */
  .modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(51,16,25,0.6);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 100;
  }
  .modal-overlay.open{ display:flex; }

  .modal-card{
    background: var(--ivory);
    border-radius: 6px;
    max-width: 460px;
    width: 100%;
    padding: 34px 30px 28px;
    box-shadow: 0 30px 70px -20px rgba(51,16,25,0.5);
    border-top: 3px solid var(--amber);
  }
  .modal-icon{
    width: 34px;
    height: 34px;
    color: var(--wine);
    margin-bottom: 16px;
  }
  .modal-card h3{
    font-family: var(--serif);
    font-weight: 500;
    font-size: 22px;
    color: var(--wine-deep);
    margin-bottom: 14px;
  }
  .modal-card p{
    font-size: 14px;
    line-height: 1.65;
    color: rgba(36,20,25,0.75);
    margin-bottom: 12px;
  }
  .modal-card p a{
    color: var(--wine);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .modal-actions{
    margin-top: 22px;
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .modal-actions .btn-primary,
  .modal-actions .btn-ghost{
    padding: 13px 22px;
    font-size: 12px;
  }
  .modal-actions button{
    border: none;
    cursor: pointer;
    font-family: var(--mono);
  }
  .modal-actions .btn-ghost{
    background: none;
  }

  /* ---------- SOBRE A CÁTIA ---------- */
  .about{
    padding: 80px 32px 70px;
    text-align: center;
  }
  .about-inner{
    max-width: 640px;
    margin: 0 auto;
  }
  .about-flourish{
    font-size: 20px;
    color: var(--amber);
    margin-bottom: 18px;
  }
  .about .eyebrow{ justify-content: center; margin-bottom: 20px; }
  .about .eyebrow::before{
    content: "";
    width: 22px; height: 1px; background: var(--amber);
  }
  .about h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 38px);
    color: var(--wine-deep);
    margin-bottom: 18px;
  }
  .about p{
    font-size: 15.5px;
    line-height: 1.75;
    color: rgba(46,38,32,0.72);
    margin-bottom: 14px;
  }
  .about .hero-sign{ margin-top: 22px; }

  /* ---------- SELOS NOS CARTÕES ---------- */
  .cat-badge{
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--ivory);
    background: var(--wine);
    white-space: nowrap;
  }
  .cat-badge.new{ background: var(--amber); color: var(--wine-deep); }

  /* ---------- PERGUNTAS FREQUENTES ---------- */
  .faq{
    padding: 76px 32px;
  }
  .faq-inner{
    max-width: 700px;
    margin: 0 auto;
  }
  .faq h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 34px);
    color: var(--wine-deep);
    margin-bottom: 8px;
  }
  .faq-list{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
  }
  .faq-item{
    border-bottom: 1px solid var(--taupe-line);
  }
  .faq-item summary{
    cursor: pointer;
    padding: 20px 4px;
    font-family: var(--serif);
    font-size: 16.5px;
    font-weight: 500;
    color: var(--wine-deep);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-item summary::-webkit-details-marker{ display: none; }
  .faq-item summary::after{
    content: "+";
    font-family: var(--mono);
    color: var(--amber);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  .faq-item[open] summary::after{ transform: rotate(45deg); }
  .faq-item p{
    padding: 0 4px 20px;
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(46,38,32,0.68);
  }
  .faq-item p a{
    color: var(--wine);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ---------- FORMULÁRIO DE ENCOMENDA ---------- */
  .order{
    padding: 76px 32px;
    background: var(--ivory-2);
    border-top: 1px solid var(--taupe-line);
    border-bottom: 1px solid var(--taupe-line);
  }
  .order-inner{
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }
  .order .eyebrow{ justify-content: center; margin-bottom: 18px; }
  .order .eyebrow::before{ content:""; width:22px; height:1px; background: var(--amber); }
  .order h2{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(26px, 3.2vw, 34px);
    color: var(--wine-deep);
    margin-bottom: 12px;
  }
  .order > .order-inner > p{
    font-size: 14.5px;
    color: rgba(46,38,32,0.65);
    margin-bottom: 32px;
  }
  .order-form{
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .form-row label{
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 6px;
  }
  .form-row input,
  .form-row select,
  .form-row textarea{
    width: 100%;
    font-family: var(--sans);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--ivory);
    border: 1px solid var(--taupe-line);
    border-radius: 6px;
    padding: 12px 14px;
    outline: none;
    transition: border-color .2s ease;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus{
    border-color: var(--amber);
  }
  .form-row textarea{ resize: vertical; }
  .order-form .btn-primary{
    border: none;
    cursor: pointer;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .order-note{
    margin-top: 16px;
    font-size: 12px;
    color: var(--taupe);
    text-align: center;
  }

  /* ---------- BOTÃO FLUTUANTE WHATSAPP (2 contactos) ---------- */
  .whatsapp-widget{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
  }
  .whatsapp-menu{
    display: none;
    flex-direction: column;
    gap: 8px;
    background: var(--ivory);
    border: 1px solid var(--taupe-line);
    border-radius: 12px;
    padding: 10px;
    max-width: min(240px, calc(100vw - 44px));
    box-shadow: 0 18px 40px -14px rgba(46,38,32,0.35);
  }
  .whatsapp-menu.open{ display: flex; }
  .whatsapp-menu a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink);
    padding: 9px 14px 9px 10px;
    border-radius: 8px;
    white-space: normal;
    transition: background .2s ease;
  }
  .whatsapp-menu a:hover{ background: var(--ivory-2); }
  .whatsapp-menu a svg{ width: 18px; height: 18px; flex-shrink: 0; }
  .whatsapp-float{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55);
    animation: wa-pulse 2.6s ease-in-out infinite;
  }
  .whatsapp-float svg{ width: 28px; height: 28px; }
  @keyframes wa-pulse{
    0%, 100%{ box-shadow: 0 12px 28px -8px rgba(37,211,102,0.55); }
    50%{ box-shadow: 0 12px 34px -6px rgba(37,211,102,0.8); }
  }

  /* ---------- FOOTER ---------- */
  footer{
    padding: 56px 32px 34px;
  }
  .footer-inner{
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--taupe-line);
  }
  .footer-brand .logo{ margin-bottom: 10px; }
  .footer-brand p{
    max-width: 300px;
    font-size: 13.5px;
    color: rgba(36,20,25,0.6);
  }
  .footer-col h4{
    font-family: var(--mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--taupe);
    margin-bottom: 14px;
  }
  .footer-col a, .footer-col p{
    display:block;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--ink);
    opacity: 0.75;
  }
  .footer-col a:hover{ opacity: 1; }

  .footer-bottom{
    max-width: var(--container);
    margin: 22px auto 0;
    display:flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--taupe);
    flex-wrap: wrap;
    gap: 10px;
  }

  @media (max-width: 920px){
    .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 720px){
    .nav-links{ display:none; }
    .nav-cta{ display:none; }
    .nav > .lang-switch{ display:none; }
    .burger{ display:flex; }
    .hero{ padding: 56px 24px 40px; }
    .about{ padding: 44px 24px 40px; }
    .categories{ padding: 8px 24px 44px; }
    .cat-grid{ grid-template-columns: 1fr; }
    .cat-card{ min-height: 0; padding: 20px 20px; }
    .reviews{ padding: 40px 24px 44px; }
    .reviews-grid{ grid-template-columns: 1fr; }
    .faq{ padding: 40px 24px; }
    .order{ padding: 40px 24px; }
    .disclaimer{ padding: 40px 24px; }
    .footer-inner{ flex-direction: column; gap: 24px; }
    footer{ padding: 40px 24px 24px; }
    .hero-actions{ margin-top: 26px; }
    .hero p.desc{ margin-top: 18px; }
    .cat-head{ margin-bottom: 24px; }
    .reviews-head{ margin-bottom: 24px; }
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    .hero-glow{ animation: none; }
    .cat-card, .review-card{ transition: none; opacity:1; transform:none; }
    .mist-puff, .mist-flash{ animation: none; opacity: 0; }
    .whatsapp-float{ animation: none; }
  }
