/* =============================================================
   Carioca Travels — Design System
   Marca: #8d48c7 (roxo) + verde água de apoio
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Marca — construída a partir de #8d48c7 (hsl 273 53% 53%) */
  --brand-50: #f8f3fc;
  --brand-100: #efe1f8;
  --brand-200: #ddc4f0;
  --brand-300: #c49ee5;
  --brand-400: #a973d6;
  --brand-500: #8d48c7;
  --brand-600: #7838ad;
  --brand-700: #622d8d;
  --brand-800: #4c246e;
  --brand-900: #351950;

  /* Verde água — apoio, destaques e confirmações */
  --aqua-50: #eefbf8;
  --aqua-100: #d3f5ee;
  --aqua-200: #a8ebdd;
  --aqua-300: #72dcc8;
  --aqua-400: #3fc5ae;
  --aqua-500: #22a894;
  --aqua-600: #178778;
  --aqua-700: #156c61;
  --aqua-800: #14564e;

  /* Neutros com leve viés quente do roxo, para o cinza não brigar com a marca */
  --ink-950: #17111d;
  --ink-900: #241b2c;
  --ink-800: #362b40;
  --ink-700: #4b3f56;
  --ink-600: #665a72;
  --ink-500: #8a7f95;
  --ink-400: #b0a7b9;
  --ink-300: #d2ccd8;
  --ink-200: #e7e3ec;
  --ink-100: #f3f1f6;
  --ink-50: #faf9fb;
  --white: #ffffff;

  /* Semânticos */
  --color-text: var(--ink-700);
  --color-heading: var(--ink-950);
  --color-muted: var(--ink-600);
  --color-bg: var(--white);
  --color-bg-alt: var(--ink-50);
  --color-border: var(--ink-200);
  --color-accent: var(--brand-500);
  --color-accent-hover: var(--brand-600);
  --color-success: var(--aqua-600);
  --whatsapp: #25d366;

  --gradient-brand: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--aqua-500) 140%);
  --gradient-soft: linear-gradient(135deg, var(--brand-50) 0%, var(--aqua-50) 100%);

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: clamp(1.125rem, 0.5vw + 1rem, 1.25rem);
  --fs-xl: clamp(1.375rem, 1vw + 1.1rem, 1.625rem);
  --fs-2xl: clamp(1.75rem, 2vw + 1.2rem, 2.25rem);
  --fs-3xl: clamp(2.125rem, 3.2vw + 1.2rem, 3.25rem);
  --fs-4xl: clamp(2.5rem, 4.5vw + 1.2rem, 4rem);

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.65;

  /* Espaçamento — base 4px */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-11: 6.5rem;

  /* Formas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 2px rgba(23, 17, 29, 0.06);
  --shadow-sm: 0 2px 8px rgba(23, 17, 29, 0.06);
  --shadow-md: 0 8px 24px rgba(23, 17, 29, 0.08);
  --shadow-lg: 0 18px 48px rgba(23, 17, 29, 0.12);
  --shadow-brand: 0 12px 32px rgba(141, 72, 199, 0.28);

  --container: 1180px;
  --container-narrow: 760px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 220ms var(--ease);
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { text-wrap: pretty; }

a {
  color: var(--color-accent);
  text-decoration-color: color-mix(in srgb, var(--color-accent) 35%, transparent);
  text-underline-offset: 0.2em;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent-hover); }

ul, ol { padding-inline-start: 1.25em; }

:focus-visible {
  outline: 3px solid var(--brand-400);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- 3. Utilitários de layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-block: var(--space-10);
}

.section--tight { padding-block: var(--space-8); }
.section--alt { background: var(--color-bg-alt); }
.section--soft { background: var(--gradient-soft); }

.section-head {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  text-align: center;
}

.section-head p {
  margin-top: var(--space-3);
  color: var(--color-muted);
  font-size: var(--fs-lg);
}

.eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.stack > * + * { margin-top: var(--space-4); }
.text-center { text-align: center; }

/* Bloco de ação que fecha uma seção (botão "ver todos"). */
.section-actions {
  margin-top: var(--space-7);
  text-align: center;
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 200;
  padding: var(--space-3) var(--space-4);
  background: var(--brand-600);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
  color: var(--white);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.875rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
    background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  fill: currentColor;
}

.btn--primary {
  background: var(--brand-500);
  color: var(--white);
  box-shadow: var(--shadow-brand);
}

.btn--primary:hover {
  background: var(--brand-600);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(141, 72, 199, 0.36);
}

.btn--secondary {
  background: var(--white);
  color: var(--brand-600);
  border-color: var(--brand-200);
  box-shadow: var(--shadow-xs);
}

.btn--secondary:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  border-color: var(--brand-300);
}

.btn--aqua {
  background: var(--aqua-500);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(34, 168, 148, 0.28);
}

.btn--aqua:hover {
  background: var(--aqua-600);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: var(--white);
}

.btn--on-brand {
  background: var(--white);
  color: var(--brand-600);
}

.btn--on-brand:hover {
  background: var(--brand-50);
  color: var(--brand-700);
}

.btn--sm { padding: 0.625rem 1.125rem; font-size: var(--fs-sm); }
.btn--block { width: 100%; }

/* ---------- 5. Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  min-height: 74px;
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-600);
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__brand img {
  height: 38px;
  width: auto;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.navbar__link {
  position: relative;
  padding-block: var(--space-2);
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--ink-700);
  text-decoration: none;
  white-space: nowrap;
}

.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-500);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar__link:hover,
.navbar__link[aria-current="page"] {
  color: var(--brand-600);
}

.navbar__link:hover::after,
.navbar__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-600);
  text-decoration: none;
}

.lang-switch:hover {
  background: var(--brand-50);
  border-color: var(--brand-200);
  color: var(--brand-600);
}

.navbar__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--brand-600);
}

.navbar__toggle svg { width: 22px; height: 22px; fill: currentColor; }
.navbar__toggle .icon-close { display: none; }
.navbar__toggle[aria-expanded="true"] .icon-close { display: block; }
.navbar__toggle[aria-expanded="true"] .icon-menu { display: none; }

@media (max-width: 900px) {
  .navbar__toggle { display: inline-flex; }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--space-5) var(--space-5);
    background: var(--white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .navbar__menu[data-open="true"] { display: flex; }

  .navbar__link {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--ink-100);
  }

  .navbar__link::after { display: none; }

  .navbar__actions .btn { display: none; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-10) var(--space-9);
  background: var(--gradient-soft);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-9);
  align-items: center;
}

.hero__title {
  margin-bottom: var(--space-4);
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-600), var(--aqua-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: var(--fs-lg);
  color: var(--color-muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
  .hero__media { aspect-ratio: 16 / 10; }
}

/* ---------- 7. Trust bar ---------- */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-6);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid var(--brand-200);
}

.trust__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-600);
}

.trust__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--aqua-600);
}

/* ---------- 8. Cards ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-200);
}

/* O link cobre o card inteiro: um só alvo de clique, sem <button> dentro de <a>. */
.card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--brand-100);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.card:hover .card__media img { transform: scale(1.05); }

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
  padding: var(--space-5);
}

.card__title {
  font-size: var(--fs-lg);
  line-height: var(--lh-snug);
}

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

.card__text {
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  color: var(--ink-500);
}

.card__cta {
  margin-top: auto;
  padding-top: var(--space-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--brand-600);
}

.card__cta svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
  margin-left: 0.25em;
  fill: currentColor;
  transition: transform var(--transition);
}

.card:hover .card__cta svg { transform: translateX(4px); }

/* Card de serviço — ícone em vez de imagem */
.card--service { text-align: left; }

.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-600);
}

.card__icon svg { width: 26px; height: 26px; fill: currentColor; }

/* Card compacto de destino */
.card--compact .card__body { padding: var(--space-4); gap: var(--space-1); }
.card--compact .card__title { font-size: var(--fs-base); }
.card--compact .card__media { aspect-ratio: 3 / 2; }

.badge {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge--aqua { background: var(--aqua-50); color: var(--aqua-800); }

/* ---------- 9. Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
}

.stats__value {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.stats__label {
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- 10. Depoimentos ---------- */
.testimonial {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.testimonial__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
}

.testimonial__stars svg { width: 18px; height: 18px; fill: #f5a623; }

.testimonial__quote {
  flex: 1;
  font-size: var(--fs-base);
  color: var(--ink-700);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--ink-100);
}

.testimonial__avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
}

.testimonial__name {
  font-weight: 600;
  color: var(--color-heading);
  font-size: var(--fs-sm);
}

.testimonial__source {
  font-size: var(--fs-xs);
  color: var(--ink-500);
}

/* ---------- 11. CTA final ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-9) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
}

.cta h2 { color: var(--white); }

.cta p {
  max-width: 38rem;
  margin: var(--space-3) auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-lg);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

.cta__contact {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
}

.cta__contact a {
  display: inline-block;
  padding-block: var(--space-1);
  color: var(--white);
  font-weight: 600;
}

/* ---------- 12. Footer ---------- */
.footer {
  padding-block: var(--space-9) var(--space-6);
  background: var(--ink-950);
  color: var(--ink-300);
  font-size: var(--fs-sm);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--space-7);
}

@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer__tagline { color: var(--ink-400); max-width: 26rem; }

.footer h4 {
  margin-bottom: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.footer ul { list-style: none; padding: 0; }
.footer li + li { margin-top: var(--space-1); }

.footer a {
  color: var(--ink-300);
  text-decoration: none;
}

/* Links de lista do rodapé: padding vertical para o alvo de toque chegar a
   24px (WCAG 2.5.8). Só o texto dava 17px de altura no celular. */
.footer li > a,
.footer li {
  display: block;
  padding-block: var(--space-1);
}

.footer a:hover { color: var(--aqua-300); }

.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid var(--ink-800);
  font-size: var(--fs-xs);
  color: var(--ink-500);
  text-align: center;
}

.footer__bottom p + p { margin-top: var(--space-2); }

.footer__socials {
  display: flex;
  gap: var(--space-3);
}

.footer__socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink-800);
  border-radius: var(--radius-full);
  transition: background var(--transition), border-color var(--transition);
}

.footer__socials svg { width: 18px; height: 18px; fill: currentColor; }

.footer__socials a:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: var(--white);
}

/* ---------- 13. WhatsApp flutuante ---------- */
.whatsapp-fab {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab svg { width: 30px; height: 30px; fill: currentColor; }

.whatsapp-fab:hover {
  transform: scale(1.08);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

@media (max-width: 520px) {
  .whatsapp-fab {
    width: 52px;
    height: 52px;
    right: var(--space-4);
    bottom: var(--space-4);
  }
}

/* ---------- 14. Breadcrumb ---------- */
.breadcrumb {
  padding-block: var(--space-4) 0;
  font-size: var(--fs-xs);
  color: var(--ink-500);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--ink-300);
}

/* Padding vertical para o alvo de toque chegar a 24px (WCAG 2.5.8).
   Breadcrumb é navegação, então não cai na isenção de link inline. */
.breadcrumb a {
  display: inline-block;
  padding-block: var(--space-1);
  color: var(--ink-600);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--brand-600); }

/* ---------- 15. Blog ---------- */
.tag-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.tag-nav a {
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--white);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-600);
  text-decoration: none;
}

.tag-nav a:hover {
  border-color: var(--brand-300);
  background: var(--brand-50);
  color: var(--brand-700);
}

.tag-nav a[aria-current="page"] {
  background: var(--brand-500);
  border-color: var(--brand-500);
  color: var(--white);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.pagination__status {
  font-size: var(--fs-sm);
  color: var(--ink-500);
}

/* Corpo do post */
.prose {
  font-size: var(--fs-md);
  line-height: 1.75;
  color: var(--ink-700);
}

.prose > * + * { margin-top: var(--space-5); }

.prose h2 {
  margin-top: var(--space-8);
  font-size: var(--fs-xl);
}

.prose h3 {
  margin-top: var(--space-7);
  font-size: var(--fs-lg);
}

.prose img {
  width: 100%;
  border-radius: var(--radius-md);
}

.prose blockquote {
  margin-inline: 0;
  padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--aqua-400);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--aqua-50);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--ink-800);
}

.prose blockquote p { margin: 0; }

.prose ul,
.prose ol { padding-inline-start: 1.35em; }
.prose li + li { margin-top: var(--space-2); }

.prose a { font-weight: 500; }

.prose hr {
  border: 0;
  border-top: 1px solid var(--color-border);
}

.post-header {
  padding-block: var(--space-8) var(--space-6);
  text-align: center;
}

.post-header__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  color: var(--ink-500);
}

.post-cover {
  margin-bottom: var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- 16. Página de conteúdo simples ---------- */
.page-header {
  padding-block: var(--space-9) var(--space-7);
  background: var(--gradient-soft);
  text-align: center;
}

.page-header p {
  max-width: 42rem;
  margin: var(--space-4) auto 0;
  font-size: var(--fs-lg);
  color: var(--color-muted);
}

.address {
  font-style: normal;
  font-size: var(--fs-md);
  line-height: 1.9;
  color: var(--color-muted);
}

/* ---------- 17. Lista de checagem ---------- */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--aqua-600);
}

/* =============================================================
   18. Loja de roteiros (loja.cariocatravels.com)
   ============================================================= */

.trust--center {
  justify-content: center;
  border-top-color: var(--brand-200);
}

/* ---- Navbar da loja ----
   A loja não tem menu hambúrguer: são só marca, "voltar para o site" e idioma.
   No celular esses três não cabem lado a lado (o texto de volta sozinho passa
   de 150px), então a marca fica só com o ícone. */
.navbar--shop .navbar__inner { gap: var(--space-3); }

.navbar--shop .navbar__actions {
  min-width: 0;
  flex-shrink: 1;
}

.navbar--shop .navbar__link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .navbar--shop .navbar__brand span { display: none; }
}

@media (max-width: 380px) {
  .navbar--shop .navbar__link { display: none; }
}

/* ---- Preço ---- */
.price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--brand-700);
  letter-spacing: -0.02em;
}

.price--lg {
  font-size: var(--fs-3xl);
  line-height: 1;
  display: block;
}

/* ---- Card de produto ---- */
.card--product .card__media { position: relative; aspect-ratio: 16 / 10; }

.card__ribbon {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  background: var(--aqua-500);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--space-4);
}

.card__foot .card__cta { margin-top: 0; padding-top: 0; }

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
  padding: 0;
  font-size: var(--fs-sm);
  color: var(--ink-500);
}

.product-specs li { display: inline-flex; align-items: center; gap: var(--space-2); }

.product-specs li + li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-300);
}

.product-specs--lg {
  margin-block: var(--space-5);
  font-size: var(--fs-base);
}

/* ---- Página de produto ---- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: start;
}

.product__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.product__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product__subtitle {
  margin-block: var(--space-3) var(--space-5);
  font-size: var(--fs-lg);
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .product {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  .product__media { position: static; }
}

/* ---- Caixa de compra ---- */
.buybox {
  margin-top: var(--space-6);
  padding: var(--space-6);
  border: 1px solid var(--brand-200);
  border-radius: var(--radius-lg);
  background: var(--brand-50);
}

.buybox__label {
  display: block;
  margin-bottom: var(--space-1);
  font-size: var(--fs-sm);
  color: var(--color-muted);
}

.buybox__form { margin-top: var(--space-5); }

.buybox__trust {
  margin-top: var(--space-5);
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--ink-600);
}

.buybox__trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.buybox__trust svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: var(--aqua-600);
}

.buybox__note {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--brand-200);
  font-size: var(--fs-xs);
  color: var(--ink-500);
  text-align: center;
}

/* ---- FAQ ---- */
.faq {
  border-top: 1px solid var(--color-border);
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--brand-500);
  transition: transform var(--transition);
}

.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  padding-bottom: var(--space-5);
  color: var(--color-muted);
}

/* ---- Páginas de retorno do pagamento ---- */
.status { text-align: center; }

.status__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-full);
  background: var(--ink-100);
  color: var(--ink-500);
}

.status__icon svg { width: 34px; height: 34px; fill: currentColor; }

.status__icon--success { background: var(--aqua-50); color: var(--aqua-600); }
.status__icon--pending { background: #fdf4e3; color: #b57b1a; }
.status__icon--failure,
.status__icon--expired { background: #fdecec; color: #c0392b; }

.status__lead {
  max-width: 34rem;
  margin: var(--space-4) auto 0;
  font-size: var(--fs-lg);
  color: var(--color-muted);
}

.status__actions { margin-top: var(--space-7); }

.status__help {
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--ink-500);
}
