/* Guia Chapada — landing estática (cores alinhadas ao site React original) */
:root {
  --gc-text: #17251f;
  --gc-bg: #f6f7fb;
  --gc-cerrado: #2f7d55;
  --gc-cerrado-dark: #0f3d2e;
  --gc-accent: #e58b55;
  --gc-accent-hover: #d97941;
  --gc-topbar: #61b979;
  --gc-areia: #f4e7c5;
  --gc-max: 72rem;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(15, 61, 46, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--gc-text);
  background: var(--gc-bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gc-cerrado);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gc-cerrado-dark);
}

.topbar {
  background: var(--gc-topbar);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow);
}

.header-inner {
  max-width: var(--gc-max);
  margin: 0 auto;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.125rem;
  box-sizing: border-box;
  min-width: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  /* Larga o suficiente para o wordmark; encolhe se faltar espaço para o nav */
  max-width: min(380px, 46vw);
  margin-right: 0.75rem;
  text-decoration: none;
  color: var(--gc-text);
  font-weight: 700;
  font-size: 1rem;
}
.logo-link picture {
  display: block;
  min-width: 0;
  max-width: 100%;
}
.logo-link img {
  display: block;
  height: clamp(52px, 7vw, 64px);
  width: auto;
  max-height: min(64px, 10vh);
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-main,
.nav-toggle {
  align-self: center;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  min-width: 0;
}
.nav-main a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  color: var(--gc-text);
}
.nav-main a:hover,
.nav-main a[aria-current="page"] {
  background: rgba(47, 125, 85, 0.1);
  color: var(--gc-cerrado-dark);
}

.nav-main a.nav-search {
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
  padding: 0.45rem;
  color: #64748b;
}
.nav-main a.nav-search:hover,
.nav-main a.nav-search:focus-visible {
  background: #f8fafc;
  color: #df8350;
}

.lang-switch {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  padding: 0.125rem 0.25rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
}
.lang-switch a {
  font-size: 11px;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  text-decoration: none;
  color: #475569;
  border: none;
}
.lang-switch a:hover:not([aria-current="true"]) {
  background: #f1f5f9;
  color: #334155;
}
.lang-switch a[aria-current="true"] {
  background: #df8350;
  color: #fff;
}
.lang-switch a[aria-current="true"]:hover {
  background: #df8350;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: var(--gc-cerrado);
  color: #fff;
  border: none;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1024px) and (min-width: 861px) {
  /* Textos maiores em ES (“Atractivos” etc.): sobra menos espaço para o wordmark */
  .logo-link {
    max-width: min(280px, 36vw);
  }
  .logo-link img {
    height: clamp(48px, 6.5vw, 56px);
  }
}

@media (max-width: 860px) {
  .logo-link {
    max-width: min(320px, calc(100% - 5.75rem));
  }
  .nav-toggle {
    display: block;
  }
  .nav-main {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 1rem;
    top: 100%;
    background: #fff;
    padding: 0.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 220px;
  }
  .site-header.is-open .nav-main {
    display: flex;
  }
  .lang-switch {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

main {
  max-width: var(--gc-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.hero {
  background: linear-gradient(135deg, rgba(229, 139, 85, 0.12), rgba(47, 125, 85, 0.08));
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 2.5rem 2rem;
  }
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: var(--gc-cerrado-dark);
}
.hero .badge {
  display: inline-block;
  background: #fff;
  color: var(--gc-cerrado-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(15, 61, 46, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--gc-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gc-accent-hover);
  color: #fff;
}
.btn-ghost {
  background: #fff;
  color: var(--gc-cerrado-dark);
  border: 2px solid rgba(15, 61, 46, 0.12);
}
.btn-ghost:hover {
  border-color: var(--gc-cerrado);
  color: var(--gc-cerrado);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 46, 0.06);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 1rem 1.1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h2,
.card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.card-body p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  flex: 1;
}
.card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e8ecef;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin: 2.5rem 0 0.5rem;
  font-size: 1.5rem;
  color: var(--gc-cerrado-dark);
}
.section-lead {
  margin: 0 0 1rem;
  max-width: 52ch;
  color: #3d5349;
}

.map-section {
  background: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.map-section h2 {
  margin-top: 0;
}

.prose {
  background: #fff;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.prose h1 {
  margin-top: 0;
  color: var(--gc-cerrado-dark);
}
.prose h2 {
  margin-top: 1.75rem;
  color: var(--gc-cerrado-dark);
}

.reviews {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1rem;
}
.review {
  background: #fff;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 61, 46, 0.08);
  font-size: 0.92rem;
}
.review strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* Rodapé alinhado a frontend/cliente/src/layouts/SiteLayout.tsx */
.site-footer {
  margin-top: 3.5rem;
  background: linear-gradient(to bottom right, #1f2f2b, #263a35 45%, #152420);
  color: #fff;
  padding: 0 1rem;
}

.footer-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer-tagline-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-tagline-body {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
}

.footer-instagram {
  display: inline-flex;
  margin-top: 1rem;
  border-radius: 999px;
  background: #df8350;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none;
}

.footer-instagram:hover {
  filter: brightness(1.05);
  color: #fff !important;
}

.footer-brand-thumb picture img {
  display: block;
  width: 8rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  margin-bottom: 1.25rem;
}

.footer-cadastur-img {
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-cadastur-img {
    justify-content: flex-start;
  }
}

.footer-cadastur-img picture img {
  display: block;
  max-height: 16rem;
  width: auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-nav a:hover {
  color: #df8350;
}

.footer-col-title {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #df8350;
}

.footer-support {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-support p {
  margin: 0;
}

.footer-support p + p {
  margin-top: 0.75rem;
}

.footer-support a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-support a:hover {
  color: #df8350;
}

.footer-bottom {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1rem 1.25rem;
  text-align: center;
  background: rgba(8, 14, 12, 0.35);
}

.footer-copyright {
  margin: 0 auto;
  max-width: 1180px;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(47, 125, 85, 0.12);
  color: var(--gc-cerrado-dark);
}

table.season {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1rem 0;
}
table.season th,
table.season td {
  border: 1px solid rgba(15, 61, 46, 0.12);
  padding: 0.5rem 0.6rem;
  text-align: left;
}
table.season th {
  background: rgba(47, 125, 85, 0.12);
}

.cadastur-stamp {
  max-width: 200px;
  margin-top: 0.5rem;
}

/* ========== Shell / home (espelho do React) ========== */
.official-home-shell {
  /* Transparente: usa só o fundo do body (--gc-bg), sem gradiente extra no canto */
  background: transparent;
}

.gcv-page-pad {
  padding: 1.75rem 0.75rem 2.5rem;
}
@media (min-width: 640px) {
  .gcv-page-pad {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 3.5rem;
    padding-top: 2.25rem;
  }
}

.gcv-home-max {
  max-width: 1180px;
  margin: 0 auto;
}

.gcv-home-card {
  margin-top: 3rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.15);
  backdrop-filter: blur(6px);
}
@media (min-width: 768px) {
  .gcv-home-card {
    padding: 2rem;
  }
}

.gcv-home-card__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .gcv-home-card__head {
    flex-direction: row;
    align-items: flex-end;
  }
}

.gcv-chip-orange {
  display: inline-flex;
  border-radius: 999px;
  background: #e58b55;
  padding: 0.35rem 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (min-width: 640px) {
  .gcv-chip-orange {
    font-size: 11px;
  }
}

.gcv-link-cerrado {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #225f42;
  text-decoration: none;
}
.gcv-link-cerrado:hover {
  color: #df8350;
}

.gcv-home-featured-title {
  margin: 0.75rem 0 0;
  max-width: 24ch;
  font-size: clamp(1.12rem, 4.1vw, 1.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
}
@media (min-width: 640px) {
  .gcv-home-featured-title {
    font-size: 1.5rem;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .gcv-home-featured-title {
    font-size: 2.25rem;
  }
}

.gcv-photo-card-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gcv-photo-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gcv-photo-card {
  position: relative;
  display: grid;
  grid-template-areas: "card";
  grid-template-rows: 1fr;
  height: 18rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #0f172a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  ring: 1px solid rgba(0, 0, 0, 0.05);
}

.gcv-photo-card > picture {
  grid-area: card;
  display: block;
  min-height: 0;
  width: 100%;
  height: 100%;
}

.gcv-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gcv-photo-card:hover img {
  transform: scale(1.06);
}

.gcv-photo-card__grad {
  grid-area: card;
  display: block;
  align-self: stretch;
  min-height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.25), transparent);
  pointer-events: none;
  z-index: 1;
}

.gcv-card-photo-text {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}

.gcv-photo-card__tag {
  grid-area: card;
  align-self: start;
  justify-self: start;
  margin: 0.75rem;
  max-width: calc(100% - 1.5rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  font-size: 9px;
  font-weight: 600;
  color: #0f172a;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (min-width: 640px) {
  .gcv-photo-card__tag {
    font-size: 10px;
  }
}

.gcv-photo-card__caption {
  grid-area: card;
  align-self: end;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem 1rem;
}

.gcv-photo-card__title {
  margin: 0;
  padding: 4px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 640px) {
  .gcv-photo-card__title {
    font-size: 1.125rem;
  }
}

.gcv-photo-card__meta {
  margin: 0;
  padding: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 640px) {
  .gcv-photo-card__meta {
    font-size: 11px;
  }
}

/* Mapa teaser (home) */
.gcv-map-promo {
  margin-top: 2.5rem;
  display: grid;
  gap: 2rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, #142a52, #172f59, #0f203f);
  padding: 1.5rem;
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.25);
}
@media (min-width: 768px) {
  .gcv-map-promo {
    grid-template-columns: 0.85fr 1.15fr;
    padding: 2rem;
  }
}

.gcv-map-promo h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.12rem, 4vw, 1.35rem);
  font-weight: 900;
  line-height: 1.14;
}
@media (min-width: 768px) {
  .gcv-map-promo h2 {
    font-size: 2.25rem;
  }
}

.gcv-map-promo__lead {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .gcv-map-promo__lead {
    font-size: 0.95rem;
  }
}

.gcv-map-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
  line-height: 0;
  text-align: start;
}
.gcv-map-trigger:focus-visible {
  outline: 3px solid #df8350;
  outline-offset: 4px;
}
.gcv-map-trigger img,
.gcv-map-trigger picture,
.gcv-map-trigger picture img {
  display: block;
  width: 100%;
  min-height: 14rem;
  border-radius: 1rem;
  object-fit: cover;
  pointer-events: none;
}

/* Hero carrossel */
.gcv-hero {
  position: relative;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  overflow: hidden;
  border-radius: 1.8rem;
  background: #0f2420;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  min-height: 460px;
}
@media (min-width: 640px) {
  .gcv-hero {
    aspect-ratio: 16 / 9;
    min-height: 340px;
  }
}
.gcv-hero:active {
  cursor: grabbing;
}

.gcv-hero__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.gcv-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.gcv-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gcv-hero__slide picture,
.gcv-hero__slide .gcv-hero__picture {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
}
.gcv-hero__slide picture img,
.gcv-hero__slide .gcv-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gcv-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 24, 20, 0.52),
    rgba(15, 36, 32, 0.38) 40%,
    rgba(22, 61, 51, 0.28)
  );
  pointer-events: none;
}

.gcv-hero-overlay-text {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 2.5rem 4rem 3rem;
  color: #fff;
}
@media (max-width: 639px) {
  .gcv-hero-overlay-text {
    justify-content: flex-start;
    padding: 2.5rem 1.25rem 3.25rem;
  }
}
@media (min-width: 768px) {
  .gcv-hero-overlay-text {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.gcv-hero-overlay-text h1,
.gcv-hero-overlay-text p {
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 1px 3px rgba(0, 0, 0, 0.85);
}

.gcv-hero-overlay-text > h1,
.gcv-hero-overlay-text > .gcv-hero-lead,
.gcv-hero-overlay-text > .gcv-hero__sub {
  width: 100%;
}

.gcv-hero-overlay-text .gcv-hero-badge.gcv-hero-plain-chip,
.gcv-hero-overlay-text a.gcv-hero-line.gcv-hero-plain-chip {
  text-shadow: none;
  box-shadow: none;
}

.gcv-hero__sub {
  margin-top: 0.75rem;
  max-width: 100%;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
@media (min-width: 640px) {
  .gcv-hero__sub {
    font-size: 0.875rem;
    max-width: 42rem;
  }
}

@keyframes gcv-hero-word-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.55em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes gcv-hero-line-in {
  from {
    opacity: 0;
    transform: translate3d(0, 1rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.gcv-hero .gcv-hero-word {
  display: inline-block;
  opacity: 0;
  animation: gcv-hero-word-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.gcv-hero .gcv-hero-line {
  opacity: 0;
  animation: gcv-hero-line-in 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.gcv-hero .gcv-hero-badge {
  margin-top: 0.25rem;
  display: inline-flex;
  max-width: calc(100% - 0.25rem);
  border-radius: 999px;
  background: #e58b55;
  padding: 0.35rem 0.75rem;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  color: #fff;
}
@media (min-width: 640px) {
  .gcv-hero .gcv-hero-badge {
    margin-top: 0;
    padding: 0.5rem 1rem;
    font-size: 11px;
  }
}

.gcv-hero-overlay-text h1 {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: clamp(1.45rem, 4.85vw, 1.85rem);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .gcv-hero-overlay-text h1 {
    margin-top: 1.25rem;
    max-width: 56rem;
    font-size: 2.25rem;
    line-height: 1.08;
  }
}
@media (min-width: 768px) {
  .gcv-hero-overlay-text h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .gcv-hero-overlay-text h1 {
    font-size: 3.75rem;
  }
}

.gcv-hero-overlay-text .gcv-hero-lead {
  margin: 0.75rem 0 0;
  max-width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
@media (min-width: 640px) {
  .gcv-hero-overlay-text .gcv-hero-lead {
    margin-top: 1.25rem;
    max-width: 48rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}
@media (min-width: 768px) {
  .gcv-hero-overlay-text .gcv-hero-lead {
    font-size: 1.125rem;
  }
}

.gcv-hero-cta {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: #e58b55;
  padding: 0.75rem 1rem;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff !important;
  text-decoration: none;
  transition: background 0.15s ease;
}
.gcv-hero-cta:hover {
  background: #d97941;
  color: #fff !important;
}
@media (min-width: 640px) {
  .gcv-hero-cta {
    margin-top: 1.75rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
}

.gcv-hero-wa-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.gcv-hero__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease;
}
.gcv-hero__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
}
.gcv-hero__prev {
  left: 0.5rem;
}
.gcv-hero__next {
  right: 0.5rem;
}
@media (min-width: 640px) {
  .gcv-hero__arrow {
    width: 2.25rem;
    height: 2.25rem;
  }
  .gcv-hero__prev {
    left: 1rem;
  }
  .gcv-hero__next {
    right: 1rem;
  }
}

.gcv-hero__dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
.gcv-hero__dot {
  margin: 0 0.375rem;
  height: 0.5rem;
  width: 0.5rem;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  transition: all 0.3s ease-out;
}
.gcv-hero__dot:hover {
  background: rgba(255, 255, 255, 0.65);
}
.gcv-hero__dot.is-active {
  width: 2.5rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Depoimentos após shell */
.gcv-reviews-wrap {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding: 0 0.75rem 2rem;
}
@media (min-width: 640px) {
  .gcv-reviews-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ========== Mapa interativo (figura + hotspots) ========== */
.gcv-detail-region-map {
  margin-top: clamp(36px, 5vw, 56px);
  padding: clamp(22px, 3.5vw, 32px);
  border: 1px solid rgba(23, 38, 75, 0.12);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
}

.gcv-detail-region-map__title {
  margin: 0 0 0.35rem;
  color: #17264b;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.gcv-detail-region-map__lead {
  margin: 0 0 1.25rem;
  max-width: 62ch;
  color: rgba(23, 38, 75, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.gcv-detail-region-map__figure {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 0;
}

.gcv-detail-region-map__figure picture,
.gcv-detail-region-map__figure > picture img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.14);
}

.gcv-detail-region-map__hotspots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 14px;
  pointer-events: none;
}

.gcv-detail-region-map__hotspot {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 4px;
  background: transparent;
  pointer-events: auto;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.gcv-detail-region-map__hotspot:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(23, 38, 75, 0.28);
}

.gcv-detail-region-map__hotspot:focus-visible {
  outline: 2px solid #12806a;
  outline-offset: 2px;
  background: rgba(18, 128, 106, 0.12);
}

.gcv-detail-region-map__hotspot--current {
  box-shadow: inset 0 0 0 2px rgba(18, 128, 106, 0.85);
  background: rgba(18, 128, 106, 0.08);
}

.gcv-map-shell {
  margin-top: 2.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(148, 163, 184, 0.15);
}
@media (min-width: 768px) {
  .gcv-map-shell {
    padding: 2rem;
  }
}

.gcv-map-shell__inner {
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #f8fafc;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

/* Lightbox mapa */
.gcv-map-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(12px, 4vw, 28px);
  background: #000;
}
.gcv-map-lightbox.is-open {
  display: flex;
}

.gcv-map-lightbox__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.gcv-map-lightbox__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  pointer-events: auto;
}

.gcv-map-lightbox__figure {
  position: relative;
  display: inline-block;
  max-width: min(96vw, 1500px);
  max-height: 92vh;
  margin: 0;
  vertical-align: top;
}

.gcv-map-lightbox__figure picture,
.gcv-map-lightbox__figure picture img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(96vw, 1500px);
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.gcv-map-lightbox__hotspots {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
  pointer-events: none;
}

.gcv-map-lightbox__hotspot {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 4px;
  background: transparent;
  pointer-events: auto;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.gcv-map-lightbox__hotspot:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.gcv-map-lightbox__hotspot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.gcv-map-lightbox__hotspot--current {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
}

.gcv-map-lightbox__close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: background 0.15s ease;
}
.gcv-map-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.gcv-map-lightbox__mode {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .gcv-hero .gcv-hero-word,
  .gcv-hero .gcv-hero-line {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* -------- Galeria de atrativos (dados attraction-galleries.json) -------- */
.gcv-attr-gallery {
  margin: 2rem 0;
  padding: 0;
}
.gcv-attr-gallery__h {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 900;
  color: #0f172a;
}
.gcv-attr-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .gcv-attr-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}
@media (min-width: 1024px) {
  .gcv-attr-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gcv-attr-gallery__cell {
  display: block;
  border-radius: 0.85rem;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gcv-attr-gallery__cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.gcv-attr-gallery__cell picture,
.gcv-attr-gallery__cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* -------- Home: teaser Revista -------- */
.gcv-home-revista-teaser__h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1.1rem, 3.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
}
@media (min-width: 640px) {
  .gcv-home-revista-teaser__h2 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  .gcv-home-revista-teaser__h2 {
    font-size: 2.25rem;
  }
}
.gcv-revista-teaser-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .gcv-revista-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.gcv-revista-teaser-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.gcv-revista-teaser-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}
.gcv-revista-teaser-card__media {
  line-height: 0;
}
.gcv-revista-teaser-card__media picture,
.gcv-revista-teaser-card__media img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .gcv-revista-teaser-card__media picture,
  .gcv-revista-teaser-card__media img {
    height: 12.5rem;
  }
}
.gcv-revista-teaser-card__body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.gcv-revista-teaser-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
}
.gcv-revista-teaser-card__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
  flex: 1;
}
.gcv-revista-teaser-card__more {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #225f42;
}

/* -------- Home: Instagram -------- */
.gcv-instagram-handle {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c4744a;
  text-decoration: none;
}
.gcv-instagram-handle:hover,
.gcv-instagram-handle:focus-visible {
  color: #a85a38;
}

.gcv-home-instagram__lead {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}
.gcv-home-instagram__cta-wrap {
  margin: 1.25rem 0 0;
}

/* -------- Home: depoimentos (cartões) -------- */
.gcv-chip-emerald {
  display: inline-flex;
  border-radius: 999px;
  background: #168f7a;
  padding: 0.4rem 0.85rem;
  font-size: 10px;
  font-weight: 800;
  text-transform: none;
  color: #fff;
}
@media (min-width: 640px) {
  .gcv-chip-emerald {
    font-size: 11px;
  }
}
.gcv-home-reviews {
  margin-top: 2.5rem;
  text-align: center;
  padding: 0 0.15rem 1rem;
}
.gcv-home-reviews__intro {
  max-width: 42rem;
  margin: 0 auto;
}
.gcv-home-reviews__h2 {
  margin: 1rem 0 0;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #1e293b;
  text-transform: none;
  letter-spacing: -0.02em;
}
.gcv-home-reviews__star {
  color: #e5a12d;
  margin-right: 0.15em;
}
.gcv-home-reviews__lead {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #475569;
}
.gcv-review-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
  text-align: left;
}
@media (min-width: 768px) {
  .gcv-review-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.gcv-review-card {
  display: flex;
  flex-direction: column;
  min-height: 25rem;
  padding: 1.75rem 1.75rem 1.85rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  box-shadow: 0 10px 28px rgba(148, 163, 184, 0.18);
}
@media (min-width: 768px) {
  .gcv-review-card {
    padding: 1.75rem 2rem 2rem;
    min-height: 27.5rem;
  }
}
.gcv-review-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gcv-review-card__avatar {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 6px 16px rgba(16, 143, 122, 0.2),
    0 0 0 2px #fff;
}
.gcv-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gcv-review-card__avatar--fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #168f7a, #0f5c4a);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
}
.gcv-review-card__stars {
  margin: 0;
  font-size: 0.85rem;
  color: #caa24b;
  letter-spacing: 0.06em;
}
.gcv-review-card__name {
  margin: 0.25rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.gcv-review-card__city {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
}
.gcv-review-card__tour {
  margin: 0.65rem 0 0;
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: #ecfdf5;
  font-size: 9px;
  font-weight: 700;
  color: #14532d;
}
.gcv-review-card__quote {
  margin: 1.35rem 0 0;
  flex: 1;
  padding: 1.1rem 1rem 1.1rem 1.1rem;
  border-left: 4px solid #10b981;
  background: rgba(248, 250, 252, 0.95);
  font-size: 0.875rem;
  line-height: 1.65;
  color: #334155;
  font-style: normal;
  overflow-y: auto;
}
.gcv-review-card__quo {
  color: #94a3b8;
}

/* -------- Revista: listagem dinâmica (CMS) -------- */
.gcv-revista-hub-grid {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .gcv-revista-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gcv-revista-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gcv-revista-hub-card {
  margin: 0;
  border-radius: 1rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.gcv-revista-hub-card:hover {
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.gcv-revista-hub-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.gcv-revista-hub-card__media {
  line-height: 0;
}
.gcv-revista-hub-card__media picture,
.gcv-revista-hub-card__media img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
  display: block;
}
.gcv-revista-hub-card__body {
  padding: 1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}
.gcv-revista-hub-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  color: #0f172a;
}
.gcv-revista-hub-card__excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #475569;
  flex: 1;
}
.gcv-revista-hub-card__more {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #225f42;
}

/* -------- Corpo HTML vindo do CMS (WordPress) -------- */
.gcv-cms-body {
  margin-top: 1.25rem;
}
.gcv-cms-body h2,
.gcv-cms-body h3,
.gcv-cms-body h4 {
  margin-top: 1.5rem;
  line-height: 1.25;
  color: #0f172a;
}
.gcv-cms-body p,
.gcv-cms-body ul,
.gcv-cms-body ol {
  margin: 0.75rem 0;
}
.gcv-cms-body img {
  border-radius: 8px;
}
.gcv-cms-body figure {
  margin: 1.25rem 0;
}
.gcv-cms-body iframe {
  max-width: 100%;
  border: 0;
  border-radius: 8px;
}
.gcv-cms-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.gcv-cms-body th,
.gcv-cms-body td {
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.65rem;
}
.gcv-cms-body .wp-block-button__link,
.gcv-cms-body a.button {
  display: inline-block;
  margin: 0.35rem 0;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--gc-cerrado);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}
.gcv-cms-body .wp-block-button__link:hover,
.gcv-cms-body a.button:hover {
  background: var(--gc-cerrado-dark);
}

/* --- Revista hub (hub /revista — espelho de frontend/cliente/src/styles.css) --- */
.Revista-teaser {
  display: grid;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 61, 46, 0.08);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.Revista-teaser:hover {
  box-shadow: 0 22px 50px rgba(16, 24, 40, 0.1);
}

.Revista-teaser--capa .Revista-teaser__media--wide {
  aspect-ratio: 16 / 9;
}

.Revista-teaser__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #e8eef0 0%, #cdd8db 100%);
}

.Revista-teaser__media--wide {
  max-height: 420px;
}

.Revista-teaser__media--empty {
  min-height: 160px;
}

.Revista-teaser__media picture,
.Revista-teaser__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.Revista-teaser__media img {
  transition: transform 0.5s ease;
}

.Revista-teaser:hover .Revista-teaser__media img {
  transform: scale(1.02);
}

.Revista-teaser--lista:hover .Revista-teaser__media img {
  transform: scale(1.03);
}

.Revista-teaser__body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.Revista-teaser__title-lg {
  font-size: clamp(1.35rem, 3.4vw, 2.1rem);
  font-weight: 900;
  line-height: 1.14;
  color: #113429;
  margin: 0;
}

.Revista-teaser__title-md {
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.18;
  color: #143d32;
  margin: 0;
}

.Revista-teaser__title-sm {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.22;
  color: #1a4638;
  margin: 0;
}

.Revista-teaser__dek {
  font-size: 0.95rem;
  line-height: 1.45;
  color: #4a5966;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0;
}

.Revista-teaser__dek--short {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.Revista-teaser__meta {
  margin-top: auto;
  font-size: clamp(0.72rem, 1.6vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #7a8794;
}

.Revista-chip {
  align-self: flex-start;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(223, 131, 80, 0.15);
  color: #bf4a08;
}

.Revista-chip--live {
  background: rgba(196, 23, 12, 0.12);
  color: #b01010;
}

.Revista-teaser.Revista-teaser--capa {
  grid-template-columns: minmax(0, 3fr);
}

@media (min-width: 900px) {
  .Revista-teaser.Revista-teaser--capa {
    grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: 280px;
  }

  .Revista-teaser.Revista-teaser--capa .Revista-teaser__media--wide {
    max-height: none;
    aspect-ratio: auto;
    min-height: 280px;
  }
}

@media (max-width: 899px) {
  .Revista-teaser.Revista-teaser--capa {
    grid-template-columns: 1fr;
  }
}

.Revista-page {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(14px, 3.5vw, 28px);
  padding-block: clamp(28px, 5vw, 48px);
}

.Revista-masthead {
  border-bottom: 3px solid #0f3d2e;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.Revista-masthead__title {
  font-size: clamp(2rem, 6vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0f3d2e;
  margin: 0;
}

.Revista-masthead__sub {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  color: #4a5966;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

@media (max-width: 899px) {
  .Revista-masthead__sub {
    white-space: normal;
    max-width: min(52ch, 100%);
  }
}

@media (min-width: 900px) {
  .Revista-masthead__sub {
    white-space: nowrap;
  }
}

.Revista-editorial-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.Revista-editorial-rail {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.5vw, 22px);
}

.Revista-more-stories {
  margin-top: clamp(1.25rem, 3.5vw, 2.25rem);
}

.Revista-more-stories__h2 {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #64748b;
}

.Revista-editorial-top {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

@media (min-width: 1000px) {
  .Revista-editorial-top {
    grid-template-columns: minmax(0, 1.95fr) minmax(0, 1fr);
    align-items: start;
  }
}

.Revista-editorial-strip {
  display: grid;
  gap: clamp(14px, 2.5vw, 20px);
}

@media (min-width: 800px) {
  .Revista-editorial-strip--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .Revista-editorial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.Revista-editorial-grid {
  display: grid;
  gap: clamp(14px, 2.5vw, 20px);
  margin-top: clamp(14px, 2.5vw, 20px);
}

/* Duas matérias fixas: mesma hierarquia visual (evita “sumir” a segunda no rail). */
.Revista-editorial-grid--2up {
  margin-top: 0;
}

@media (min-width: 700px) {
  .Revista-editorial-grid--2up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

/* --- Contato (par com ContactForm + ContactInfoAside) --- */
.gcv-contact-page {
  background: var(--gc-bg);
}

.gcv-contact-article {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1rem 3.5rem;
}

.gcv-contact-kicker {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gc-cerrado);
}

.gcv-contact-h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gc-cerrado-dark);
}

.gcv-contact-sub {
  margin: 1.25rem 0 0;
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #334155;
}

.gcv-contact-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .gcv-contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
    gap: 3rem;
  }
}

.gcv-contact-form-shell,
.gcv-contact-aside {
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 20px 40px rgba(148, 163, 184, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04);
}

.gcv-contact-form-shell {
  padding: 1.25rem 1.35rem 1.5rem;
}

@media (min-width: 768px) {
  .gcv-contact-form-shell {
    padding: 1.75rem 2rem 2rem;
  }
}

.gcv-contact-form-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gc-cerrado-dark);
}

.gcv-contact-form-intro {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.gcv-contact-intro-strong {
  color: #143d32;
  font-weight: 700;
}

.gcv-contact-sent {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(47, 125, 85, 0.28);
  background: rgba(240, 249, 246, 0.95);
}

.gcv-contact-sent__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gc-cerrado-dark);
}

.gcv-contact-sent__line {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1e4a3a;
}

.gcv-contact-sent__thanks {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #334155;
}

.gcv-contact-sent__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.gcv-contact-form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gcv-contact-field-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .gcv-contact-field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gcv-contact-field--grow {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.gcv-contact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #225f42;
}

.gcv-contact-input,
.gcv-contact-textarea,
.gcv-contact-select {
  margin-top: 0.45rem;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  font-family: inherit;
}

.gcv-contact-input:focus,
.gcv-contact-textarea:focus,
.gcv-contact-select:focus {
  border-color: var(--gc-cerrado);
  box-shadow: 0 0 0 3px rgba(47, 125, 85, 0.22);
}

.gcv-contact-textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.gcv-contact-error {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #fecaca;
  background: #fff1f2;
  font-size: 0.875rem;
  color: #881337;
}

.gcv-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .gcv-contact-actions {
    flex-direction: row;
    align-items: center;
  }
}

.gcv-contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition:
    background 0.15s ease,
    opacity 0.15s ease;
}

.gcv-contact-btn--primary {
  background: var(--gc-cerrado);
  color: #fff;
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.12);
}

.gcv-contact-btn--primary:hover:not(:disabled) {
  background: var(--gc-cerrado-dark);
}

.gcv-contact-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.gcv-contact-btn--secondary {
  background: #fff;
  color: #1d4ed8;
  border: 2px solid #2563eb;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.gcv-contact-btn--secondary:hover {
  background: #eff6ff;
}

.gcv-contact-aside {
  padding: 1.5rem 1.65rem;
  color: var(--gc-text);
}

@media (min-width: 768px) {
  .gcv-contact-aside {
    padding: 1.75rem 1.75rem;
  }
}

.gcv-contact-aside__kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: color-mix(in srgb, var(--gc-accent) 72%, var(--gc-text));
}

.gcv-contact-aside__lead {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--gc-text) 82%, white);
}

.gcv-contact-aside__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.gcv-contact-aside__list li + li {
  margin-top: 1.15rem;
}

.gcv-contact-aside__lbl {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: color-mix(in srgb, var(--gc-accent) 72%, var(--gc-text));
}

.gcv-contact-aside__lbl--spaced {
  margin-top: 1.35rem;
}

.gcv-contact-aside__link {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--gc-cerrado-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gcv-contact-aside__link:hover {
  color: #0a2a1c;
}

.gcv-contact-aside__text {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--gc-text) 82%, white);
}

.gcv-contact-map-wrap {
  position: relative;
  margin-top: 0.5rem;
  min-height: 220px;
  flex: 1;
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.gcv-contact-map {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  pointer-events: none;
}

.gcv-contact-map-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
}
