/* ============================================================
   DOURO & BLUE EXPERIENCES — turismo.css
   Tema: náutico sofisticado — navy, vinho, terra, dourado
   Fontes: Cormorant Garamond (headings) + Lato (body)
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --navy:        #0A2342;
  --navy-mid:    #163258;
  --teal:        #1A7B8E;
  --teal-light:  #2A9BAF;
  --wine:        #6B2D45;
  --wine-light:  #8C3A5A;
  --gold:        #C9934A;
  --gold-light:  #DBA85E;
  --cream:       #F8F5EF;
  --sand:        #EDE5D8;
  --text-dark:   #1A1A2E;
  --text-mid:    #4A5568;
  --text-light:  #718096;
  --white:       #FFFFFF;
  --gray-mid:    #CBD5E0;
  --gray-text:   #A0AEC0;

  --lang-bar-h:  36px;
  --header-h:    70px;
  --container:   1160px;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-card: 0 4px 24px rgba(10, 35, 66, 0.12);
  --shadow-hover:0 8px 40px rgba(10, 35, 66, 0.20);
  --transition:  0.28s ease;

  --spacing-xs:  8px;
  --spacing-sm:  16px;
  --spacing-md:  24px;
  --spacing-lg:  48px;
  --spacing-xl:  72px;
  --spacing-2xl: 96px;
  --spacing-3xl: 128px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
.hidden { display: none !important; }

/* ── Lang Bar ───────────────────────────────────────────── */
.lang-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--lang-bar-h);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--spacing-md);
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lang-selector { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 8px; border-radius: 4px;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover,
.lang-btn.active { background: rgba(255,255,255,.12); color: var(--white); }
.lang-btn img { border-radius: 1px; }

/* ── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--lang-bar-h);
  left: 0; right: 0;
  height: var(--header-h);
  background: rgba(10, 35, 66, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
}
.logo__icon { font-size: 1.6rem; line-height: 1; }
.logo__text { display: flex; flex-direction: column; gap: 0; }
.logo__text strong { font-size: 1rem; font-weight: 700; letter-spacing: .01em; }
.logo__text span { font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .06em; text-transform: uppercase; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: calc(var(--lang-bar-h) + var(--header-h));
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 var(--spacing-md);
  z-index: 100;
}
.nav__list { display: flex; align-items: center; gap: var(--spacing-xs); }
.nav__link {
  font-size: .9rem; font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 6px 12px; border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: 8px;
  transition: background var(--transition);
  z-index: 105;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white);
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav Drawer ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    padding: 72px var(--spacing-md) var(--spacing-md);
    background: var(--navy);
    z-index: 102;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    gap: 0;
  }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { padding: 12px 16px; font-size: 1rem; }
  .nav-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 101;
  }
  .nav-backdrop.open { display: block; }
  .drawer-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    border-radius: 8px;
    transition: background var(--transition);
    z-index: 1;
  }
  .drawer-close:hover { background: rgba(255,255,255,.12); }
  .drawer-lang {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .hamburger { display: flex; }
  /* reposicionar header__inner */
  .header__inner { position: relative; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--lang-bar-h) + var(--header-h));
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(ellipse at center, rgba(201,147,74,.09) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555881400-74d7acaacd8b?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 35, 66, 0.95) 0%,
      rgba(10, 35, 66, 0.76) 48%,
      rgba(10, 35, 66, 0.22) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 35, 66, 0.88) 0%,
      transparent 38%
    );
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-md);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.hero__content { max-width: 560px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 20px;
  background: rgba(201,147,74,.13);
  border: 1px solid rgba(201,147,74,.45);
  box-shadow: 0 0 0 4px rgba(201,147,74,.06), inset 0 1px 0 rgba(201,147,74,.18);
  font-size: .72rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--spacing-sm);
}
.hero__accent-line {
  width: 52px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: var(--spacing-md);
}
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 40px rgba(10, 35, 66, 0.55);
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__subtitle {
  font-size: 1.05rem; line-height: 1.78;
  font-weight: 300;
  color: rgba(255,255,255,.80);
  margin-bottom: var(--spacing-lg);
  max-width: 480px;
}
.hero__ctas { display: flex; gap: var(--spacing-sm); flex-wrap: wrap; margin-bottom: var(--spacing-lg); }
.hero__stats {
  display: flex; gap: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(201,147,74,.28);
}
.hero__stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.3rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hero__stat-label { font-size: .74rem; color: rgba(255,255,255,.55); margin-top: 5px; letter-spacing: .03em; }
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.hero__carousel {
  width: 320px;
}
.hero__cards-stack {
  position: relative;
  height: 132px;
}
.hero__mini-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: rgba(10, 35, 66, 0.50);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.16);
  border-top-color: rgba(201,147,74,.30);
  border-radius: var(--radius);
  padding: var(--spacing-md);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hero__mini-card.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow:
    0 16px 48px rgba(10, 35, 66, 0.45),
    0 0 0 1px rgba(201,147,74,.18),
    0 4px 20px rgba(201,147,74,.14);
}
.hero__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.hero__dot:hover:not(.active) { background: rgba(201,147,74,.55); }
.hero__mini-card-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.hero__mini-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; margin-bottom: 8px;
}
.hero__mini-card-price {
  font-size: .85rem; font-weight: 700; color: var(--gold-light);
}
.hero__scroll-hint {
  position: absolute; bottom: 112px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.38); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  animation: bounce 2.2s infinite;
  z-index: 3;
}
.hero__scroll-arrow { width: 16px; height: 16px; color: rgba(201,147,74,.6); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 96px;
  z-index: 2;
  pointer-events: none;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 100%; display: block; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 8px;
  font-size: .9rem; font-weight: 700;
  transition: all var(--transition); border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,147,74,.35);
}
.btn--primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,147,74,.5);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover { background: var(--teal); color: var(--white); }
.btn--outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--ghost {
  background: transparent; color: var(--text-mid);
  border-color: var(--gray-mid);
}
.btn--ghost:hover { background: var(--gray-mid); color: var(--text-dark); }
.btn--sm { padding: 7px 16px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--danger { background: #dc2626; color: var(--white); border-color: #dc2626; }
.btn--danger:hover { background: #b91c1c; border-color: #b91c1c; }

/* ── Section headers ────────────────────────────────────── */
.section-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(26,123,142,.12); color: var(--teal);
  margin-bottom: var(--spacing-sm);
}
.section-badge--wine { background: rgba(107,45,69,.1); color: var(--wine); }
.section-badge--light { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.section-header { text-align: center; margin-bottom: var(--spacing-xl); }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--spacing-sm);
}
.section-title--light { color: var(--white); }
.section-subtitle {
  font-size: 1rem; line-height: 1.65;
  color: var(--text-mid); max-width: 560px; margin: 0 auto;
}
.section-subtitle--light { color: rgba(255,255,255,.75); }

/* ── Fade-up animation ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Experience Cards ───────────────────────────────────── */
.experiencias { padding: var(--spacing-3xl) 0; background: var(--cream); }
.experiencias__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.exp-card__img {
  position: relative; height: 200px; overflow: hidden;
  background: var(--navy);
}
.exp-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.exp-card:hover .exp-card__img img { transform: scale(1.06); }
.exp-card__price-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--navy);
  padding: 4px 10px; border-radius: 20px;
  font-size: .8rem; font-weight: 800;
}
.exp-card__body { padding: var(--spacing-md); }
.exp-card__cat {
  display: inline-block; padding: 3px 10px; border-radius: 20px;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 8px;
}
.cat--cruzeiro { background: rgba(26,123,142,.12); color: var(--teal); }
.cat--quinta   { background: rgba(201,147,74,.15); color: #9E6A1F; }
.cat--wine-tour{ background: rgba(107,45,69,.12);  color: var(--wine); }
.cat--combo    { background: rgba(10,35,66,.08);   color: var(--navy-mid); }
.exp-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; line-height: 1.3;
}
.exp-card__duracao {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-light);
}
.exp-card__duracao svg { flex-shrink: 0; }

/* ── Blog Section ───────────────────────────────────────── */
.blog-home { padding: var(--spacing-3xl) 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.blog-card__thumb {
  height: 180px; overflow: hidden; background: var(--sand);
}
.blog-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }
.blog-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 2rem;
}
.blog-card__body { padding: var(--spacing-md); }
.blog-card__data { font-size: .75rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); line-height: 1.35;
}
.blog-home__cta { text-align: center; }

/* ── Contacto Section ───────────────────────────────────── */
.contacto {
  padding: var(--spacing-3xl) 0;
  background: var(--navy);
}
.contacto__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl); align-items: start;
}
.contact-item {
  display: flex; align-items: flex-start; gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}
.contact-item__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,147,74,.15); border-radius: 8px;
  color: var(--gold);
}
.contact-item__label { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.contact-item__value { font-size: .92rem; color: var(--white); font-weight: 500; }
.contacto__items { margin-top: var(--spacing-lg); }
.contacto__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: var(--spacing-lg);
}
.contacto__card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--white);
  margin-bottom: 8px;
}
.contacto__card-sub { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: var(--spacing-lg); }
.wa-card-btn {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 14px 20px;
  background: #25D366; color: var(--white); border-radius: 10px;
  font-size: .95rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  margin-bottom: var(--spacing-md);
}
.wa-card-btn:hover { background: #1ebe5b; transform: translateY(-1px); }
.contacto__horario { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.contacto__horario strong { color: rgba(255,255,255,.85); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #060F1E;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: var(--spacing-xl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: var(--spacing-md);
}
.footer__desc { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; margin-top: var(--spacing-sm); }
.footer__title { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: var(--spacing-sm); }
.footer__list li + li { margin-top: 8px; }
.footer__list a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer__list a:hover { color: var(--white); }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.footer__social a:hover { background: var(--teal); color: var(--white); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer__link-admin { font-size: .9rem; opacity: .3; transition: opacity var(--transition); }
.footer__link-admin:hover { opacity: 1; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: var(--white); }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10,35,66,.7);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: max(env(safe-area-inset-top), 24px) 24px 24px;
  overflow-y: auto;
}
.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 840px;
  max-height: 90dvh;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
}
.modal__gallery {
  grid-row: 1 / 3;
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--navy);
}
.modal__gallery-main {
  width: 100%; height: 280px; object-fit: cover;
  display: block;
}
.modal__gallery-video {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.modal__gallery-video iframe {
  width: 100%; height: 100%; border: none;
}
.modal__thumbs {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 8px; background: rgba(0,0,0,.25);
}
.modal__thumb {
  width: 54px; height: 40px; object-fit: cover;
  border-radius: 4px; cursor: pointer; opacity: .65;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}
.modal__thumb.active, .modal__thumb:hover { opacity: 1; border-color: var(--gold); }
.modal__summary {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--sand);
}
.modal__close-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; line-height: 1;
  transition: background var(--transition);
  z-index: 1;
}
.modal__close-btn:hover { background: rgba(0,0,0,.75); }
.modal__cat { margin-bottom: 8px; }
.modal__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin-bottom: var(--spacing-sm);
}
.modal__price {
  font-size: 1.6rem; font-weight: 800; color: var(--gold);
  margin-bottom: 12px;
}
.modal__price small { font-size: .75rem; font-weight: 400; color: var(--text-light); margin-left: 4px; }
.modal__duracao {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--text-mid); margin-bottom: var(--spacing-md);
}
.modal__wa-btn {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  width: 100%; padding: 12px 20px;
  background: #25D366; color: var(--white); border-radius: 8px;
  font-size: .9rem; font-weight: 700;
  transition: background var(--transition);
}
.modal__wa-btn:hover { background: #1ebe5b; }
.modal__tabs-wrap {
  grid-column: 2 / 3;
  padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}
.modal-tabs-nav {
  display: flex; gap: 4px; margin-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--sand); padding-bottom: 4px;
}
.modal-tab-btn {
  padding: 7px 14px; border-radius: 6px 6px 0 0;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
}
.modal-tab-btn.active { color: var(--teal); border-bottom: 2px solid var(--teal); }
.modal-tab-panel { display: none; font-size: .88rem; color: var(--text-mid); line-height: 1.6; }
.modal-tab-panel.active { display: block; }
.modal-tab-panel img { max-width: 100%; border-radius: 6px; margin: 8px 0; }

/* ── Catalogue page specific ────────────────────────────── */
.catalogo-page {
  padding-top: calc(var(--lang-bar-h) + var(--header-h) + var(--spacing-xl));
  min-height: 100vh;
  background: var(--cream);
}
.catalogo-header {
  text-align: center;
  padding-bottom: var(--spacing-xl);
}
.catalogo-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}
.filter-btn {
  padding: 8px 20px; border-radius: 20px;
  font-size: .82rem; font-weight: 600;
  background: var(--white); color: var(--text-mid);
  border: 2px solid var(--gray-mid);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.filter-btn.active {
  background: var(--teal); color: var(--white);
  border-color: var(--teal);
}
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
.catalogo-loading,
.catalogo-vazio {
  grid-column: 1 / -1;
  text-align: center; padding: var(--spacing-xl);
  color: var(--text-light); font-size: .95rem;
}
.pagination {
  display: flex; gap: 6px; justify-content: center;
  align-items: center; padding-bottom: var(--spacing-xl);
}
.page-btn {
  padding: 8px 16px; border-radius: 8px;
  font-size: .85rem; font-weight: 600;
  background: var(--white); color: var(--text-mid);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.page-btn.active, .page-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Admin Styles ───────────────────────────────────────── */
.login-page {
  min-height: 100vh; display: flex;
  align-items: center; justify-content: center;
  background: var(--navy);
}
.login-card {
  background: var(--white); border-radius: var(--radius);
  padding: var(--spacing-xl); width: 100%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.login-card .logo { margin-bottom: var(--spacing-xl); }
.login-card h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 700; color: var(--navy);
  margin-bottom: var(--spacing-lg);
}
.login-error { color: #dc2626; font-size: .85rem; margin-bottom: var(--spacing-sm); display: none; }
.login-error.visible { display: block; }

.admin-layout { min-height: 100vh; background: #F1F5F9; }
.admin-header {
  display: flex; align-items: center; gap: var(--spacing-md);
  padding: 0 var(--spacing-md); height: 64px;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.admin-header .logo { flex: 1; }
.admin-title { color: rgba(255,255,255,.6); font-size: .85rem; }
.admin-body { padding: var(--spacing-md); max-width: 1100px; margin: 0 auto; }
.admin-tabs-nav {
  display: flex; gap: 4px; margin-bottom: var(--spacing-md);
  background: var(--white); border-radius: var(--radius-sm);
  padding: 6px; box-shadow: var(--shadow-card);
}
.admin-tab-btn {
  flex: 1; padding: 8px 16px;
  border-radius: 6px; font-size: .85rem; font-weight: 600;
  color: var(--text-mid); transition: all var(--transition);
}
.admin-tab-btn.active { background: var(--navy); color: var(--white); }
.admin-tab-panel { display: none; }
.admin-tab-panel.active { display: block; }
.admin-subtoolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--spacing-md); padding: var(--spacing-sm) var(--spacing-md);
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}
.admin-subtoolbar h2 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.admin-table-wrap {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); overflow-x: auto;
}
.admin-table {
  width: 100%; border-collapse: collapse; font-size: .88rem;
}
.admin-table th {
  padding: 12px 16px; text-align: left;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-light); border-bottom: 1px solid var(--sand);
}
.admin-table td {
  padding: 12px 16px; border-bottom: 1px solid #F1F5F9;
  color: var(--text-dark);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #F8FAFC; }
.admin-table__actions { display: flex; gap: 6px; }
.admin-table__thumb { width: 48px; height: 36px; object-fit: cover; border-radius: 4px; }
.admin-loading {
  padding: var(--spacing-lg); text-align: center;
  color: var(--text-light); font-size: .9rem;
}
.admin-vazio {
  padding: var(--spacing-lg); text-align: center;
  color: var(--text-light); font-size: .9rem;
}
.admin-panel {
  display: none;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: var(--spacing-lg); margin-top: var(--spacing-md);
}
.admin-panel.active { display: block; }
.admin-panel__title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: var(--spacing-md); }
.admin-panel__actions { display: flex; gap: var(--spacing-sm); justify-content: flex-end; margin-top: var(--spacing-lg); }

.form-group { margin-bottom: var(--spacing-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-mid);
  font-size: .9rem; font-family: inherit; color: var(--text-dark);
  background: var(--white); transition: border-color var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,123,142,.12);
}
.form-textarea { min-height: 90px; resize: vertical; }

.input-password-wrap { position: relative; }
.btn-eye {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  padding: 4px; color: var(--text-light); transition: color var(--transition);
}
.btn-eye:hover { color: var(--text-dark); }

.foto-upload-area {
  border: 2px dashed var(--gray-mid); border-radius: var(--radius-sm);
  padding: var(--spacing-md); text-align: center;
  cursor: pointer; transition: border-color var(--transition), background var(--transition);
}
.foto-upload-area:hover { border-color: var(--teal); background: rgba(26,123,142,.04); }

.estado-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
}
.estado-badge--ativo   { background: #dcfce7; color: #166534; }
.estado-badge--inativo { background: #f3f4f6; color: #6b7280; }

/* Lang Tabs (CMS) */
.lang-tabs-nav {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--sand); padding-bottom: 0;
}
.lang-tab-btn {
  padding: 7px 14px; border-radius: 6px 6px 0 0;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
  transition: color var(--transition), background var(--transition);
}
.lang-tab-btn.active { background: var(--cream); color: var(--teal); border-bottom: 2px solid var(--teal); }
.lang-tab-panel { display: none; }
.lang-tab-panel.active { display: block; }

/* Drawer lang (mobile nav) */
.drawer-lang { display: none; }

/* Session warning */
.session-warning {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: #7c3aed; color: var(--white);
  padding: 10px 20px; border-radius: 8px; font-size: .88rem;
  box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 400;
}

/* Toast */
.toast {
  position: fixed; bottom: 20px; right: 20px;
  padding: 12px 20px; border-radius: 8px;
  font-size: .88rem; font-weight: 600; color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  z-index: 500; transition: opacity .3s ease;
}
.toast--ok  { background: #16a34a; }
.toast--err { background: #dc2626; }

/* ── Summernote dark theme ──────────────────────────────── */
.note-toolbar, .note-toolbar-wrapper {
  background: #1e293b !important; border-color: #334155 !important;
}
.note-btn { background: transparent !important; color: #cbd5e1 !important; border-color: transparent !important; }
.note-btn:hover { background: #334155 !important; }
.note-editable {
  background: #0f172a !important; color: #e2e8f0 !important;
  border-color: #334155 !important; min-height: 120px !important;
}
.note-editor.note-frame { border-color: #334155 !important; border-radius: var(--radius-sm) !important; }
.note-dropdown-menu { background: #1e293b !important; border-color: #334155 !important; }
.note-dropdown-menu .note-dropdown-item:hover { background: #334155 !important; color: #e2e8f0 !important; }
.note-codable { background: #0f172a !important; color: #a5f3fc !important; border-color: #334155 !important; }
.note-modal .note-modal-content { background: #1e293b !important; color: #e2e8f0 !important; }
.note-modal .note-modal-header { border-color: #334155 !important; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .hero__visual { display: none; }
  .experiencias__grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .catalogo-grid { grid-template-columns: 1fr 1fr; }
  .contacto__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; }
  .modal__gallery { grid-row: auto; border-radius: var(--radius) var(--radius) 0 0; }
  .modal__tabs-wrap { grid-column: auto; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open { display: flex; }
  .experiencias__grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .catalogo-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: var(--spacing-lg); }
  .form-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: var(--spacing-md); }
}
@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .admin-tabs-nav { flex-direction: column; }
}
