  :root {
    --white: #F6F6F6;
    --black: #000000;
    --ink: #161616;
    --orange: #FF6A00;
    --sand: #EDE9E4;
    --gray: #BFBFBF;
    --gray-text: #767672;

    --sans: 'Montserrat', sans-serif;
    --script: 'Caveat', cursive;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

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

  .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
  }

  /* ---------- LOGO SYMBOL ---------- */
  .mark { display: block; flex-shrink: 0; object-fit: contain; }
  .brand .mark-light { display: none; }
  nav.scrolled .mark-scrolled { display: block; }
  nav.scrolled .mark-light { display: none; }

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .brand .wordmark {
    font-family: var(--sans);
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.01em;
    color: var(--black);
  }
  .brand .wordmark span { color: var(--orange); }

  /* ---------- NAV ---------- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ink);
    transition: background 0.4s, color 0.4s, border-color 0.4s;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
  }
  .nav-inner {
    width: 100%;
    max-width: 1240px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav.scrolled {
    background: rgba(246,246,246,0.92);
    backdrop-filter: blur(10px);
    color: var(--ink);
    border-bottom: 1px solid var(--sand);
  }
  /* Variant for pages with a dark section at the very top (e.g. Loja Oficial) */
  nav.nav-on-dark { color: var(--white); }
  nav.nav-on-dark .wordmark { color: var(--white); }
  nav.nav-on-dark .wordmark span { color: #FFB27A; }
  nav.nav-on-dark .mark { display: none; }
  nav.nav-on-dark .mark-ondark { display: block !important; }
  nav.nav-on-dark.scrolled {
    background: rgba(20,18,15,0.55);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .mark-ondark { display: none; }
  .nav-links {
    display: flex;
    gap: 38px;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .nav-links a { opacity: 0.88; transition: opacity 0.3s, color 0.3s; }
  .nav-links a:hover { opacity: 1; color: var(--orange); }
  .nav-shopee {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid currentColor;
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
  }
  .nav-shopee:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

  @media (max-width: 860px) {
    .nav-links { display: none; }
    nav { padding: 22px 24px; }
    .nav-inner { align-items: center; }
    .brand { height: 34px; }
    .nav-shopee { height: 34px; box-sizing: border-box; }
  }

  @media (max-width: 380px) {
    nav { padding: 20px 14px; }
    .nav-shopee { padding: 9px 16px; }
  }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
      linear-gradient(180deg, rgba(246,246,244,0.2) 0%, rgba(246,246,244,0.55) 100%),
      url('img/hero-backdrop.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 140px 0 80px;
  }
  @media (max-height: 700px) {
    .hero { min-height: 0; padding: 130px 0 60px; }
  }
  .hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: center;
    gap: 40px;
  }
  .hero-content {
    color: var(--ink);
    opacity: 0;
    animation: heroRise 1.2s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
  }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-mark { margin: 0 0 28px; width: 48px; height: 48px; }
  .hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 22px;
  }
  .hero h1 {
    font-family: var(--sans);
    font-weight: 800;
    font-size: clamp(2.1rem, 4.4vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--black);
    margin-bottom: 18px;
  }
  .hero .script-line {
    font-family: var(--script);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--orange);
    margin-bottom: 30px;
  }
  .hero p {
    font-size: clamp(0.98rem, 1.3vw, 1.15rem);
    font-weight: 400;
    line-height: 1.7;
    max-width: 440px;
    color: var(--gray-text);
    margin: 0 0 38px;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .hero-actions .btn-ghost {
    border-color: rgba(0,0,0,0.25);
    color: var(--ink);
  }
  .hero-actions .btn-ghost:hover {
    border-color: var(--black);
    background: rgba(0,0,0,0.05);
  }

  /* ---------- HERO MAGNETS (floating composition) ---------- */
  .hero-magnets {
    position: relative;
    height: clamp(480px, 58vw, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-magnets .magnet {
    position: absolute;
    filter: drop-shadow(0 30px 40px rgba(20,16,10,0.22));
    animation: magnetFloat 9s ease-in-out infinite;
    transform-origin: center center;
  }
  .hero-magnets img { display: block; width: 100%; height: auto; }

  .magnet-a { width: 36%; top: -4%;  left: 4%;  z-index: 2; animation-delay: 0s; }
  .magnet-b { width: 33%; top: 0%;   left: 60%; z-index: 3; animation-delay: 1.4s; }
  .magnet-c { width: 32%; top: 30%;  left: 30%; z-index: 4; animation-delay: 2.8s; }
  .magnet-d { width: 29%; top: 38%;  left: 70%; z-index: 1; animation-delay: 0.8s; }
  .magnet-e { width: 30%; top: 64%;  left: -2%; z-index: 1; animation-delay: 2.3s; }
  .magnet-f { width: 31%; top: 68%;  left: 38%; z-index: 2; animation-delay: 3.6s; }

  @keyframes magnetFloat {
    0%, 100% { transform: translateY(0) scale(1) rotate(var(--tilt, 0deg)); }
    50% { transform: translateY(-14px) scale(1.06) rotate(var(--tilt, 0deg)); }
  }
  .magnet-a { --tilt: -4deg; }
  .magnet-b { --tilt: 3deg; }
  .magnet-c { --tilt: -2deg; }
  .magnet-d { --tilt: 4deg; }
  .magnet-e { --tilt: -3deg; }
  .magnet-f { --tilt: 2deg; }

  @media (prefers-reduced-motion: reduce) {
    .hero-magnets .magnet { animation: none; }
  }

  @media (max-width: 940px) {
    .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 8px;
    }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-mark { margin: 0 auto 24px; }
    .hero-actions { justify-content: center; }
    .hero-magnets { order: -1; height: clamp(380px, 84vw, 500px); margin-bottom: 8px; }
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
    text-align: center;
  }
  .btn-primary { background: var(--orange); color: var(--white); }
  .btn-primary:hover { background: var(--white); color: var(--black); transform: translateY(-2px); }
  .btn-dark { background: var(--black); color: var(--white); }
  .btn-dark:hover { background: var(--orange); transform: translateY(-2px); }
  .btn-ghost { border: 1.5px solid rgba(255,255,255,0.55); color: var(--white); }
  .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

  @media (max-width: 600px) {
    .btn {
      white-space: normal;
      text-wrap: balance;
      padding: 15px 24px;
      font-size: 12px;
      max-width: 100%;
      line-height: 1.4;
    }
    .hero-actions, .cta-final .wrap { padding-left: 4px; padding-right: 4px; }
    .hero-mark { width: 44px; height: 44px; margin-bottom: 20px; }
    .hero-content { padding-bottom: 80px; }
  }
  .scroll-cue {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--ink);
    opacity: 0.55;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .scroll-cue::after {
    content: '';
    width: 1px; height: 28px;
    background: currentColor;
    animation: scrollPulse 2.2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%,100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  /* ---------- SECTION GENERIC ---------- */
  section { position: relative; }
  .section-pad { padding: 150px 0; }
  @media (max-width: 860px) { .section-pad { padding: 96px 0; } }

  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal.in { opacity: 1; transform: translateY(0); }

  .eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .head-block { text-align: center; max-width: 640px; margin: 0 auto 90px; }
  .head-block .eyebrow { justify-content: center; }
  .head-block h2 {
    font-weight: 800;
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    letter-spacing: -0.01em;
  }

  /* ---------- GALERIA DE ÍMÃS ---------- */
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
  }
  @media (max-width: 860px) { .galeria-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
  .galeria-item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 18px;
  }
  .galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(20,16,10,0.16));
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .galeria-item:hover img { transform: translateY(-6px) scale(1.03); }

  /* ---------- GALERIA: FAIXA DE CREDIBILIDADE ---------- */
  .galeria-credibilidade {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 80px auto 0;
    padding-top: 56px;
    border-top: 1px solid var(--sand);
    text-align: center;
  }
  @media (max-width: 600px) { .galeria-credibilidade { gap: 36px; margin-top: 56px; padding-top: 40px; } }
  .galeria-credibilidade-item .num {
    display: block;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    color: var(--orange);
    margin-bottom: 8px;
  }
  .galeria-credibilidade-item p {
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.5;
    max-width: 220px;
    margin: 0;
  }

  /* ---------- 02 PILARES ---------- */
  .pilares-section { background: var(--black); }
  .pilares-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
  }
  @media (max-width: 860px) { .pilares-grid { grid-template-columns: repeat(2, 1fr); } }
  .pilar-card {
    background: var(--black);
    padding: 56px 36px;
    color: var(--white);
  }
  .pilar-card .picon {
    width: 38px; height: 38px;
    margin-bottom: 26px;
  }
  .pilar-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
  }
  .pilar-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
  }

  /* ---------- 03 MANIFESTO MID-LINE ---------- */
  .manifesto-mid { text-align: center; padding: 190px 0; }
  .manifesto-mid p {
    font-weight: 700;
    font-size: clamp(1.5rem, 3.4vw, 2.4rem);
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto;
    color: var(--black);
  }
  .manifesto-mid p .orange { color: var(--orange); }
  .manifesto-mid .script-under {
    display: block;
    font-family: var(--script);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--orange);
    margin-top: 18px;
  }

  /* ---------- 04 COLEÇÕES ---------- */
  .colecoes { background: var(--sand); }
  .colecoes-list { display: flex; flex-direction: column; }
  .colecao-row {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    align-items: center;
    gap: 64px;
    padding: 52px 0;
    border-bottom: 1px solid var(--gray);
  }
  .colecao-row:first-of-type { border-top: 1px solid var(--gray); }
  @media (max-width: 860px) { .colecao-row { grid-template-columns: 1fr; gap: 26px; } }
  .colecao-info .coord {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gray-text);
    margin-bottom: 12px;
    display: block;
  }
  .colecao-info h3 {
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 14px;
  }
  .colecao-info p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray-text);
    max-width: 360px;
    margin-bottom: 20px;
  }
  .colecao-link {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--black);
    padding-bottom: 4px;
    transition: gap 0.3s, border-color 0.3s, color 0.3s;
  }
  .colecao-link:hover { gap: 14px; border-color: var(--orange); color: var(--orange); }

  .colecao-visual {
    aspect-ratio: 16/10;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .colecao-visual .bg { position: absolute; inset: 0; transition: transform 1s cubic-bezier(0.16,1,0.3,1); }
  .colecao-row:hover .colecao-visual .bg { transform: scale(1.03); }

  .c1 .bg { background: linear-gradient(135deg,#d6c8a8,#a78f63); background-image: url('img/gramado.jpg'); background-size: cover; background-position: center; }
  .c2 .bg { background: linear-gradient(135deg,#cdd9d3,#7e9c8e); background-image: url('img/maceio.jpg'); background-size: cover; background-position: center; }
  .c3 .bg { background: linear-gradient(135deg,#e2cdb3,#b88a55); background-image: url('img/noronha.jpg'); background-size: cover; background-position: center; }
  .c4 .bg { background: linear-gradient(135deg,#d0d6c4,#8fa07a); background-image: url('img/floripa.jpg'); background-size: cover; background-position: center; }
  .c5 .bg { background: linear-gradient(135deg,#e6d3c0,#c79b73); background-image: url('img/jericoacoara.jpg'); background-size: cover; background-position: center; }

  /* ---------- 05 MANIFESTO FULL ---------- */
  .manifesto-full { background: var(--black); color: var(--white); }
  .manifesto-full .wrap { max-width: 880px; text-align: center; }
  .manifesto-full .eyebrow { color: var(--orange); justify-content: center; }
  .manifesto-full h2 {
    font-weight: 700;
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    line-height: 1.5;
  }
  .manifesto-full .sign {
    margin-top: 44px;
    font-family: var(--script);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--orange);
  }

  /* ---------- 06 CASA ---------- */
  .casa-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  @media (max-width: 860px) { .casa-section { grid-template-columns: 1fr; } }
  .casa-visual {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,#ece7dd 0%, #d8d2c4 45%, #b9b2a0 100%);
    background-image: url('img/casa-geladeira.jpg');
    background-size: cover;
    background-position: center;
  }
  @media (min-width: 861px) { .casa-visual { aspect-ratio: auto; height: 620px; } }
  .casa-visual::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 70%, rgba(0,0,0,0.12) 100%);
  }
  .casa-text { padding: 76px 64px; }
  @media (max-width: 860px) { .casa-text { padding: 60px 32px; } }
  .casa-text h2 {
    font-weight: 800;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.25;
    max-width: 420px;
    margin-bottom: 26px;
  }
  .casa-text p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--gray-text);
    max-width: 380px;
    margin-bottom: 34px;
  }

  /* ---------- 07 DEPOIMENTOS ---------- */
  .depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; }
  @media (max-width: 860px) { .depo-grid { grid-template-columns: 1fr; gap: 44px; } }
  .depo-card .quote-mark {
    font-family: var(--script);
    font-size: 3.2rem;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 14px;
    display: block;
  }
  .depo-card p {
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 20px;
  }
  .depo-card .who {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gray-text);
    text-transform: uppercase;
  }

  /* ---------- 08 CTA FINAL ---------- */
  .cta-final {
    text-align: center;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.7)),
      linear-gradient(135deg,#d8cdb8,#9c958a,#6e7066);
    color: var(--white);
    padding: 190px 0;
  }
  .cta-final .mark { margin: 0 auto 28px; }
  .cta-final .eyebrow { color: #FFB27A; justify-content: center; }
  .cta-final h2 {
    font-weight: 800;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-bottom: 40px;
  }

  /* ---------- FOOTER ---------- */
  footer { background: var(--white); border-top: 1px solid var(--sand); padding: 60px 0 32px; }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 40px; margin-bottom: 52px;
  }
  .footer-brand .brand { margin-bottom: 14px; }
  .footer-brand p {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray-text);
    max-width: 280px;
    line-height: 1.6;
  }
  .footer-cols { display: flex; gap: 60px; }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 16px;
  }
  .footer-col a {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--black);
    opacity: 0.85;
  }
  .footer-col a:hover { opacity: 1; color: var(--orange); }
  .footer-bottom {
    display: flex; justify-content: space-between;
    font-size: 11.5px; font-weight: 300; color: var(--gray-text);
    letter-spacing: 0.03em;
    padding-top: 26px; border-top: 1px solid var(--sand);
    flex-wrap: wrap; gap: 12px;
  }

  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
  }

  /* ---------- WHATSAPP FLOATING BUTTON ---------- */
  .whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  }
  .whatsapp-fab img { width: 100%; height: 100%; display: block; object-fit: contain; }
  .whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.32);
  }
  @media (max-width: 600px) {
    .whatsapp-fab { width: 62px; height: 62px; bottom: 20px; right: 20px; }
  }

  /* ---------- SHORT-VIEWPORT HERO ADJUSTMENTS (must come after base rules) ---------- */
  @media (max-width: 600px) {
    .scroll-cue { bottom: 18px; }
  }
  @media (max-height: 700px) {
    .hero { padding-top: 120px; padding-bottom: 50px; }
    .hero-mark { width: 36px; height: 36px; margin-bottom: 14px; }
    .hero-eyebrow { margin-bottom: 14px; font-size: 11px; }
    .hero h1 { font-size: clamp(1.7rem, 6vw, 3rem); margin-bottom: 14px; }
    .hero p { margin-bottom: 24px; }
    .hero-magnets { height: clamp(220px, 40vw, 320px); }
    .scroll-cue { display: none; }
  }
  @media (max-height: 600px) {
    .hero { align-items: flex-start; padding-top: 100px; }
  }

  /* ===================================================
     PÁGINAS INTERNAS (Destinos, Nossa História, Loja Oficial)
     =================================================== */

  /* ---------- PAGE HERO (cabeçalho simples de páginas internas) ---------- */
  .page-hero {
    padding: 200px 0 90px;
    text-align: center;
    background: var(--white);
  }
  @media (max-width: 600px) { .page-hero { padding: 160px 0 70px; } }
  .page-hero .eyebrow { justify-content: center; }
  .page-hero h1 {
    font-weight: 800;
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    letter-spacing: -0.01em;
    max-width: 720px;
    margin: 0 auto 22px;
  }
  .page-hero p {
    font-size: clamp(0.98rem, 1.3vw, 1.15rem);
    color: var(--gray-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ---------- DESTINOS GRID ---------- */
  .destinos-grid {
    display: flex;
    flex-direction: column;
  }
  .destino-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 70px 0;
    border-top: 1px solid var(--sand);
  }
  .destino-card:first-of-type { border-top: 1px solid var(--gray); }
  .destino-card:nth-of-type(even) { direction: rtl; }
  .destino-card:nth-of-type(even) .destino-info { direction: ltr; }
  @media (max-width: 860px) {
    .destino-card { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; direction: ltr !important; }
  }
  .destino-visual {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
  }
  .destino-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s cubic-bezier(0.16,1,0.3,1); }
  .destino-card:hover .destino-visual img { transform: scale(1.03); }
  .destino-info .coord {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 14px;
  }
  .destino-info h2 {
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 18px;
  }
  .destino-info p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--gray-text);
    margin-bottom: 22px;
  }
  .destino-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 26px;
    padding: 20px 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
  }
  .destino-meta-item h5 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 6px;
  }
  .destino-meta-item p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
  }
  .destino-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 4px;
    transition: gap 0.3s, color 0.3s, border-color 0.3s;
  }
  .destino-link:hover { gap: 14px; border-color: var(--orange); color: var(--orange); }

  /* ---------- LOJA OFICIAL ---------- */
  .loja-section {
    text-align: center;
    padding: 220px 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
      linear-gradient(135deg,#d8cdb8,#9c958a,#6e7066);
    color: var(--white);
  }
  @media (max-width: 600px) { .loja-section { padding: 150px 0; } }
  .loja-section .mark { margin: 0 auto 28px; }
  .loja-section .eyebrow { color: #FFB27A; justify-content: center; }
  .loja-section h1 {
    font-weight: 800;
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    margin-bottom: 22px;
  }
  .loja-section p {
    font-size: clamp(0.98rem, 1.3vw, 1.15rem);
    max-width: 520px;
    margin: 0 auto 44px;
    opacity: 0.92;
    line-height: 1.7;
  }
  .loja-section .btn-primary { padding: 20px 48px; font-size: 13.5px; }
