@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:       #0f0e0d;
  --sand:      #f5f0e8;
  --warm:      #ede7d9;
  --gold:      #b8964a;
  --gold-lt:   #d4af6e;
  --muted:     #7a7269;
  --border:    #ddd7cc;
  --white:     #ffffff;

  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;

  --max:       1200px;
  --gap:       clamp(1.5rem, 4vw, 3rem);
  --radius:    2px;

  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.05rem; line-height: 1.85; color: #3a3530; }

.label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.label--dark { color: var(--muted); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.section { padding: clamp(3rem, 7vw, 6rem) 0; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--gap);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.03);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); opacity: 0.38; }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 1.1s var(--ease) 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.hero__cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
.hero__cta svg { width: 14px; height: 14px; }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
  flex-wrap: wrap;
}
.section-header__title { margin-bottom: 0.3rem; }
.section-header__link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: gap 0.2s var(--ease);
}
.section-header__link:hover { gap: 0.7rem; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.card-grid--featured {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.card-grid--featured .card:first-child {
  grid-row: span 2;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,14,13,0.1);
}
.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--warm);
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__img img { transform: scale(1.05); }
.card--featured .card__img { aspect-ratio: 4/5; }
.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__dest {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.card:hover .card__title { color: var(--gold); }
.card__excerpt {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}
.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.card__read {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s var(--ease);
}
.card:hover .card__read { gap: 0.55rem; }

/* ─── HOTEL CARD (affiliate) ─────────────────────────────── */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.hotel-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,14,13,0.09);
}
.hotel-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--warm);
}
.hotel-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.hotel-card:hover .hotel-card__img img { transform: scale(1.04); }
.hotel-card__body { padding: 1.25rem; }
.hotel-card__stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}
.hotel-card__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.hotel-card__location {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.hotel-card__desc {
  font-size: 0.95rem;
  color: #4a453f;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hotel-card__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.hotel-card__price span {
  font-size: 0.8rem;
  font-family: var(--sans);
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  color: var(--white) !important;
  text-decoration: none !important;
}
.btn--gold {
  background: var(--gold);
  color: var(--white) !important;
  width: 100%;
}
.btn--gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 100%;
}
.btn--outline:hover { background: var(--gold); color: var(--white); }

/* ─── ARTICLE BODY ───────────────────────────────────────── */
.article { max-width: 760px; margin: 0 auto; }
.article__header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.article__hero {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}
.article__body h2 { margin: 2.5rem 0 1rem; }
.article__body h3 { margin: 2rem 0 0.75rem; }
.article__body p  { margin-bottom: 1.4rem; font-size: 1.05rem; line-height: 1.85; }
.article__body ul, .article__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.4rem;
}
.article__body li { margin-bottom: 0.5rem; font-size: 1.05rem; line-height: 1.75; }
.article__body ul li { list-style: disc; }
.article__body ol li { list-style: decimal; }
.article__body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184,150,74,0.3);
  transition: border-color 0.2s;
}
.article__body a:hover { border-bottom-color: var(--gold); }
.article__body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--warm);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
}

/* ─── AFFILIATE DISCLAIMER ───────────────────────────────── */
.disclaimer {
  background: var(--warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ─── AUTHOR BOX ─────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
}
.author-box__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.author-box__name {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.author-box__bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── DESTINATION HUB ────────────────────────────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hub-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
}
.hub-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
}
.hub-item:hover img { opacity: 0.4; transform: scale(1.06); }
.hub-item__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 1rem;
}
.hub-item__label h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.hub-item__label span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* Gradientes de fallback por destino quando não há imagem */
.hub-item:nth-child(1) { background: linear-gradient(135deg, #0a3d62 0%, #1e6fa8 50%, #38ada9 100%); }
.hub-item:nth-child(2) { background: linear-gradient(135deg, #1a1a2e 0%, #c0392b 50%, #e74c3c 100%); }
.hub-item:nth-child(3) { background: linear-gradient(135deg, #0d3b6e 0%, #1a6b8a 50%, #2980b9 100%); }
.hub-item:nth-child(4) { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 50%, #52b788 100%); }
.hub-item:nth-child(5) { background: linear-gradient(135deg, #6b2737 0%, #b5451b 50%, #e67e22 100%); }
.hub-item:nth-child(6) { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #b8964a 100%); }

/* ─── NEWSLETTER ─────────────────────────────────────────── */
.newsletter {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) var(--gap);
  text-align: center;
}
.newsletter h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter p { color: rgba(255,255,255,0.6); max-width: 480px; margin: 0 auto 2rem; }
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.9rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__btn {
  background: var(--gold);
  border: none;
  padding: 0.9rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter__btn:hover { background: var(--gold-lt); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #0a0908;
  color: rgba(255,255,255,0.5);
  padding: clamp(2rem, 4vw, 3.5rem) var(--gap);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
}
.footer__logo span { color: var(--gold); }
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__copy { font-size: 0.78rem; width: 100%; text-align: center; margin-top: 1rem; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border); }

/* ─── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--muted);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--gap);
    gap: 1.25rem;
    z-index: 99;
  }
  .card-grid--featured {
    grid-template-columns: 1fr;
  }
  .card-grid--featured .card:first-child { grid-row: span 1; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter__form { flex-direction: column; border: none; }
  .newsletter__input { border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); }
  .newsletter__btn { border-radius: var(--radius); }
  .author-box { flex-direction: column; }
}
