/* ============================================================
   LANDING PAGE — PROJETO ESCOLA GOYAZ
   Responsivo completo: Desktop (≥1200), Tablet (768-1199), Mobile (≤767)
   ============================================================ */

/* ---------- VARIÁVEIS LOCAIS ---------- */
:root {
  --landing-max: 1200px;
  --landing-padding: 48px;
  --landing-gap: 40px;
}

/* ---------- HEADER / NAV ---------- */
.landing-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--azul-suave, #e1eef7);
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.landing-header.scrolled {
  background: rgba(0, 119, 170, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  border-bottom: none;
}
.landing-header-inner {
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 14px var(--landing-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding 0.35s;
}
.landing-header.scrolled .landing-header-inner {
  padding: 8px var(--landing-padding);
}
.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}
.landing-nav-link {
  color: var(--azul-escuro, #0d3859);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.landing-nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--verde, #63cc00);
  transition: width 0.25s;
}
.landing-nav-link:hover {
  color: var(--azul, #0077aa);
}
.landing-nav-link:hover::after {
  width: 100%;
}
.landing-header.scrolled .landing-nav-link {
  color: rgba(255,255,255,0.9);
}
.landing-header.scrolled .landing-nav-link:hover {
  color: #fff;
}
.landing-header.scrolled .landing-nav-link::after {
  background: #fff;
}
.landing-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--azul, #0077aa);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,119,170,0.25);
}
.landing-nav-cta:hover {
  background: var(--azul-escuro, #0d3859);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,119,170,0.35);
}
.landing-menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: var(--azul-suave, #e1eef7);
  border-radius: 10px;
  color: var(--azul-escuro, #0d3859);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.landing-menu-toggle:hover {
  background: var(--azul, #0077aa);
  color: #fff;
}
.landing-header.scrolled .landing-menu-toggle {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.landing-header.scrolled .landing-menu-toggle:hover {
  background: rgba(255,255,255,0.25);
}
.landing-nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--azul-suave, #e1eef7);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.landing-nav-mobile.aberto {
  display: flex;
}
.landing-nav-mobile-link {
  color: var(--azul-escuro, #0d3859);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.landing-nav-mobile-link:hover {
  color: var(--verde, #63cc00);
  background: var(--azul-suave, #e1eef7);
}
.landing-nav-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 20px;
  background: var(--azul, #0077aa);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.landing-nav-mobile-cta:hover {
  background: var(--azul-escuro, #0d3859);
}

/* ---------- HERO ---------- */
.landing-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px var(--landing-padding) 40px;
  overflow: hidden;
  background: #fff;
}
.landing-hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--landing-gap);
  width: 100%;
  max-width: var(--landing-max);
}
.landing-hero-left {
  flex: 1;
  max-width: 500px;
}
.landing-hero-logo {
  margin-bottom: 24px;
}
.landing-hero-logo img {
  width: 280px;
  height: auto;
}
.landing-hero-left h1 {
  font-size: 2rem;
  line-height: 1.3;
  color: var(--azul-escuro, #0d3859);
  margin-bottom: 12px;
  font-weight: 800;
}
.landing-hero-subtitle {
  color: #445;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}

/* Pilares */
.landing-hero-pilares {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.landing-hero-pilar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  max-width: 100px;
}
.landing-hero-pilar-icone {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--verde, #63cc00);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(99,204,0,0.3);
  transition: transform 0.2s;
}
.landing-hero-pilar:hover .landing-hero-pilar-icone {
  transform: scale(1.08);
}
.landing-hero-pilar span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--azul-escuro, #0d3859);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Botões padronizados */
.btn-landing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  background: var(--azul, #0077aa);
  box-shadow: 0 4px 16px rgba(0,119,170,0.3);
}
.btn-landing:hover {
  background: var(--azul-escuro, #0d3859);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,119,170,0.4);
}
.btn-landing-verde {
  background: var(--verde, #63cc00);
  box-shadow: 0 4px 16px rgba(99,204,0,0.3);
}
.btn-landing-verde:hover {
  background: var(--verde-escuro, #4fa300);
  box-shadow: 0 8px 24px rgba(99,204,0,0.4);
}
.landing-hero-botoes {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8px;
}
.landing-video-hero-botoes {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Lado Direito — Mapa */
.landing-hero-right {
  flex: 1.6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.landing-hero-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
}
.landing-hero-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,100,180,0.15));
  transition: transform 0.3s;
}
.landing-hero-map:hover {
  transform: scale(1.02);
}

/* ---------- BANNER TRANSITION ---------- */
.landing-banner-transition {
  background: linear-gradient(135deg, var(--azul, #0077aa), var(--azul-escuro, #0d3859));
  padding: 48px 24px;
}
.landing-banner-content {
  max-width: var(--landing-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.landing-banner-text h2 {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
}
.landing-banner-text h2 span {
  color: var(--verde, #63cc00);
}
.landing-banner-sub p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 420px;
}

/* ---------- TRILHA DO CONHECIMENTO ---------- */
.landing-trilha {
  padding: 90px 0;
  background: #fff;
}
.landing-section-header {
  margin-bottom: 52px;
  text-align: center;
}
.landing-trilha-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.landing-trilha-line {
  position: absolute;
  top: 38px;
  left: 50px; right: 50px;
  height: 3px;
  background: var(--azul-suave, #e1eef7);
  border-radius: 2px;
  z-index: 0;
}
.landing-trilha-items {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.landing-trilha-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 8px;
}
.landing-trilha-icone {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--verde, #63cc00);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(99,204,0,0.3);
  transition: transform 0.2s;
  overflow: hidden;
}
.landing-trilha-icone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.landing-trilha-item:hover .landing-trilha-icone {
  transform: scale(1.1);
}
.landing-trilha-ano {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--verde, #63cc00);
  margin-bottom: 6px;
}
.landing-trilha-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-escuro, #0d3859);
  max-width: 140px;
  line-height: 1.3;
}

/* ---------- ROTEIRO PEDAGÓGICO ---------- */
.landing-roteiro {
  padding: 90px 0;
  background: var(--gelo, #f5f8fa);
}
.landing-roteiro-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.landing-roteiro-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.landing-roteiro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.landing-roteiro-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.landing-roteiro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.landing-roteiro-card:hover .landing-roteiro-img img {
  transform: scale(1.08);
}
.landing-roteiro-card h4 {
  padding: 16px 16px 6px;
  font-size: 0.95rem;
  color: var(--azul-escuro, #0d3859);
  line-height: 1.3;
}
.landing-roteiro-card p {
  padding: 0 16px 18px;
  font-size: 0.82rem;
  color: #667;
  line-height: 1.5;
}

/* ---------- VIVÊNCIAS ---------- */
.landing-vivencias {
  padding: 90px 0;
  background: #fff;
}
.landing-vivencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.landing-vivencia-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--azul-suave, #e1eef7);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.landing-vivencia-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}
.landing-vivencia-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.landing-vivencia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.landing-vivencia-card:hover .landing-vivencia-img img {
  transform: scale(1.06);
}
.landing-vivencia-badge {
  position: absolute;
  top: 16px; left: 16px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--verde, #63cc00);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.landing-vivencia-card h4 {
  padding: 18px 20px 6px;
  font-size: 1.1rem;
  color: var(--azul-escuro, #0d3859);
}
.landing-vivencia-card p {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  color: #667;
  line-height: 1.6;
}

/* ---------- CTA INTERMEDIÁRIO ---------- */
.landing-cta-inter {
  background: linear-gradient(135deg, var(--azul-escuro, #0077aa) 0%, var(--azul-profundo, #005580) 100%);
  padding: 56px 24px;
  text-align: center;
}
.landing-cta-inter-content {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.landing-cta-inter-content p {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
.landing-cta-inter-content strong {
  color: var(--verde, #63cc00);
}
.landing-cta-inter-botoes {
  display: flex;
  justify-content: center;
}


/* ---------- FOOTER ---------- */
.landing-footer {
  background: var(--azul-noite, #004466);
  padding: 40px 0 24px;
  color: rgba(255,255,255,0.9);
}
.landing-footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.landing-footer-parceiros {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-footer-parceiros img {
  height: 48px;
  width: auto;
  filter: brightness(10);
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.landing-footer-parceiros img.logo-balneario {
  height: 56px;
}
.landing-footer-parceiros img:hover {
  opacity: 1;
  transform: scale(1.05);
}
.landing-footer-bottom {
  padding: 20px 0 0;
  text-align: center;
}
.landing-footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   RESPONSIVO — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --landing-padding: 24px;
    --landing-gap: 24px;
  }

  /* Header - Tablet igual ao Desktop */
  .landing-header-inner {
    padding: 14px 24px;
  }
  .landing-header.scrolled .landing-header-inner {
    padding: 8px 24px;
  }
  .landing-nav {
    display: flex;
    gap: 20px;
  }
  .landing-nav-link {
    font-size: 0.82rem;
  }
  .landing-nav-cta {
    display: inline-flex;
    padding: 9px 18px;
    font-size: 0.78rem;
  }
  .landing-menu-toggle {
    display: none;
  }

  /* Hero */
  .landing-hero {
    min-height: auto;
    padding: 100px 24px 32px;
  }
  .landing-hero-container {
    gap: 20px;
    align-items: center;
  }
  .landing-hero-left {
    max-width: 45%;
  }
  .landing-hero-logo img {
    width: 220px;
  }
  .landing-hero-right {
    flex: 1;
    justify-content: center;
    align-items: center;
  }
  .landing-hero-map-wrapper {
    max-width: 100%;
    width: 100%;
  }
  .landing-hero-map {
    max-width: 100%;
  }
  .landing-hero-botoes {
    justify-content: flex-start;
  }

  /* Banner */
  .landing-banner-transition {
    padding: 40px 24px;
  }
  .landing-banner-text h2 {
    font-size: 1.5rem;
  }
  .landing-videos-grid { grid-template-columns: repeat(3, 1fr); }
  .landing-video-player video { min-height: 400px; }

  /* Trilha */
  .landing-trilha {
    padding: 70px 0;
  }
  .landing-trilha-items {
    gap: 8px;
  }
  .landing-trilha-icone {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
  }
  .landing-trilha-ano {
    font-size: 1.3rem;
  }
  .landing-trilha-label {
    font-size: 0.78rem;
    max-width: 110px;
  }

  /* Certificado - Tablet */
  .landing-fundador {
    padding: 70px 0;
  }
  .landing-fundador-wrap {
    gap: 40px;
  }
  .landing-fundador-img {
    flex: 0 0 320px;
  }
  .landing-fundador-texto h2 {
    font-size: 1.7rem;
  }

  /* Roteiro */
  .landing-roteiro {
    padding: 70px 0;
  }
  .landing-roteiro-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  /* Vivências */
  .landing-vivencias {
    padding: 70px 0;
  }
  .landing-vivencias-grid {
    gap: 20px;
  }

  /* CTA */
  .landing-cta-inter {
    padding: 44px 24px;
  }
  .landing-cta-inter-content p {
    font-size: 1.2rem;
  }

  /* Footer */
  .landing-footer {
    padding: 44px 0 0;
  }
  .landing-footer-top {
    gap: 28px;
  }
}

/* ============================================================
   RESPONSIVO — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --landing-padding: 16px;
    --landing-gap: 16px;
  }

  /* Header */
  .landing-header-inner {
    padding: 12px 16px;
    justify-content: center;
    position: relative;
  }
  .landing-header.scrolled .landing-header-inner {
    padding: 8px 16px;
  }
  .landing-nav {
    display: none;
  }
  .landing-nav-cta {
    display: none;
  }
  .landing-menu-toggle {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  /* Hero */
  .landing-hero {
    padding: 90px 16px 24px;
    min-height: auto;
  }
  .landing-hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }
  .landing-hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .landing-hero-logo {
    margin-bottom: 16px;
  }
  .landing-hero-logo img {
    width: 220px;
  }
  .landing-hero-left h1 {
    font-size: 1.7rem;
  }
  .landing-hero-subtitle {
    margin: 0 auto 20px;
    max-width: 100%;
    font-size: 0.95rem;
  }
  .landing-hero-pilares {
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  .landing-hero-pilar {
    max-width: 80px;
  }
  .landing-hero-pilar-icone {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
  .landing-hero-pilar span {
    font-size: 0.68rem;
  }
  .landing-hero-botoes {
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .btn-hero-download,
  .btn-hero-cadastro {
    padding: 11px 16px;
    font-size: 0.78rem;
    gap: 6px;
  }
  .landing-hero-right {
    margin-top: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .landing-hero-map-wrapper {
    max-width: 420px;
    width: 92%;
    margin: 0 auto;
  }
  .landing-hero-map {
    border-radius: 14px;
  }

  /* Banner */
  .landing-banner-transition {
    padding: 36px 16px;
  }
  .landing-banner-content {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
  .landing-banner-text h2 {
    font-size: 1.3rem;
  }
  .landing-banner-sub p {
    max-width: 100%;
    font-size: 0.92rem;
  }

  /* Trilha */
  .landing-trilha {
    padding: 60px 0;
  }
  .landing-section-header {
    margin-bottom: 36px;
  }
  .landing-trilha-items {
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
  }
  .landing-trilha-line {
    display: none;
  }
  .landing-trilha-item {
    flex: 0 0 auto;
    width: 130px;
  }
  .landing-trilha-icone {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .landing-trilha-ano {
    font-size: 1.2rem;
  }
  .landing-trilha-label {
    font-size: 0.75rem;
    max-width: 110px;
  }

  /* Certificado - Mobile */
  .landing-fundador {
    padding: 60px 0;
    overflow: hidden;
  }
  .landing-fundador-wrap {
    display: flex !important;
    flex-direction: column !important;
    text-align: center;
    gap: 24px;
    overflow: hidden;
    max-width: 100%;
  }
  .landing-fundador-titulo-mobile {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    order: 1 !important;
    width: 100%;
  }
  .landing-fundador-titulo-mobile .tag-secao {
    display: inline-flex !important;
    margin-bottom: 8px;
  }
  .landing-fundador-titulo-mobile h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--azul-escuro, #0d3859);
    margin: 16px 0 0;
    line-height: 1.3;
  }
  .desktop-only {
    display: none !important;
  }
  .landing-fundador-img {
    order: 2 !important;
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .landing-fundador-texto {
    order: 3 !important;
    overflow: hidden;
    min-width: 0;
    max-width: 100%;
  }
  .landing-fundador-texto p {
    font-size: 0.95rem;
  }
  .landing-fundador-diploma {
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    word-break: break-word;
    max-width: 100%;
  }
  .landing-fundador-diploma-icone {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto 10px;
  }
  .landing-fundador-diploma span {
    font-size: 0.85rem;
  }

  /* Roteiro */
  .landing-roteiro {
    padding: 60px 0;
  }
  .landing-roteiro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .landing-roteiro-card h4 {
    font-size: 0.88rem;
    padding: 12px 14px 4px;
  }
  .landing-roteiro-card p {
    font-size: 0.78rem;
    padding: 0 14px 14px;
  }

  /* Vivências */
  .landing-vivencias {
    padding: 60px 0;
  }
  .landing-vivencias-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .landing-vivencia-card h4 {
    font-size: 1rem;
    padding: 14px 16px 4px;
  }
  .landing-vivencia-card p {
    font-size: 0.85rem;
    padding: 0 16px 16px;
  }

  /* CTA */
  .landing-cta-inter {
    padding: 40px 16px;
  }
  .landing-cta-inter-content {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
  .landing-cta-inter-content p {
    font-size: 1.1rem;
  }
  .landing-cta-inter-botoes {
    justify-content: center;
  }

  /* Footer */
  .landing-footer {
    padding: 40px 0 0;
  }
  .landing-footer-top {
    flex-direction: column;
    text-align: center;
  }
  .landing-footer-parceiros {
    gap: 16px;
  }
  .landing-footer-parceiros img {
    height: 38px;
  }

  /* Vídeos - Mobile: um abaixo do outro */
  .landing-videos-grid {
    grid-template-columns: 1fr !important;
    max-width: 320px;
    margin: 0 auto;
    gap: 20px;
  }
  .landing-video-card {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .landing-video-player video {
    min-height: 420px;
    border: none;
    outline: none;
  }
  .landing-videos-cta { margin-top: 30px; }
  .btn-cta-video { padding: 14px 32px; font-size: 0.95rem; }

  /* Balneário - Mobile */
  .landing-sobre-balneario {
    padding: 60px 0;
  }
  .landing-sobre-balneario-topo h2 {
    font-size: 1.4rem;
  }
  .landing-sobre-slide-container {
    height: 260px;
  }
  .landing-sobre-balneario-texto p {
    font-size: 0.92rem;
  }

  /* Vídeo Hero - Mobile */
  .landing-video-hero-wrap { flex-direction: column; gap: 24px; }
  .landing-video-hero-player { flex: none; width: 100%; }
  .landing-video-hero-info { text-align: center; }
  .landing-video-hero-info p:last-child { max-width: 100%; }
  .landing-video-hero-botoes { justify-content: center; }

  /* Matérias - Mobile */
  .landing-materia-card { flex-direction: column; }
  .landing-materia-img { flex: none; height: 200px; }

  /* Botões - Mobile */
  .btn-landing { padding: 12px 22px; font-size: 0.85rem; }
}

/* ============================================================
   RESPONSIVO — CELULAR PEQUENO (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  /* Header */
  .landing-header-inner {
    padding: 10px 12px;
  }
  .landing-menu-toggle {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  /* Hero */
  .landing-hero {
    padding: 80px 12px 20px;
  }
  .landing-hero-logo img {
    width: 190px;
  }
  .landing-hero-left h1 {
    font-size: 1.5rem;
  }
  .landing-hero-subtitle {
    font-size: 0.9rem;
  }
  .landing-hero-pilares {
    gap: 12px;
  }
  .landing-hero-pilar {
    max-width: 72px;
  }
  .landing-hero-pilar-icone {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
  .landing-hero-pilar span {
    font-size: 0.62rem;
  }
  .landing-hero-botoes {
    gap: 8px;
  }
  .btn-hero-download,
  .btn-hero-cadastro {
    padding: 10px 14px;
    font-size: 0.74rem;
    gap: 5px;
    justify-content: center;
  }
  .landing-hero-map-wrapper {
    max-width: 340px;
    width: 88%;
    margin: 0 auto;
  }

  /* Banner */
  .landing-banner-text h2 {
    font-size: 1.15rem;
  }

  /* Trilha */
  .landing-trilha-item {
    width: 105px;
  }
  .landing-trilha-icone {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  .landing-trilha-ano {
    font-size: 1.05rem;
  }
  .landing-trilha-label {
    font-size: 0.7rem;
    max-width: 95px;
  }

  /* Roteiro */
  .landing-roteiro-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .landing-roteiro-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 14px;
  }
  .landing-roteiro-img {
    width: 100% !important;
    min-width: unset !important;
    aspect-ratio: 16/10;
  }
  .landing-roteiro-card h4 {
    font-size: 0.9rem;
    padding: 14px 16px 6px;
  }
  .landing-roteiro-card p {
    font-size: 0.8rem;
    padding: 0 16px 16px;
    padding: 0 12px 12px;
  }

  /* Vivências */
  .landing-vivencia-img {
    aspect-ratio: 16/9;
  }

  /* CTA */
  .landing-cta-inter-content p {
    font-size: 1rem;
  }

  /* Footer */
  .landing-footer-parceiros img {
    height: 32px;
  }

  /* Vídeos e Matérias - Pequeno */
  .landing-video-hero-play { width: 60px; height: 60px; font-size: 1.4rem; }
  .landing-video-hero-info h2 { font-size: 1.4rem; }
  .landing-video-play-btn { width: 52px; height: 52px; font-size: 1.2rem; }
  .landing-materia-img { flex: none; height: 180px; }
  .landing-materia-botoes { flex-direction: column; }
  .btn-materia-link, .btn-materia-instagram { justify-content: center; }
}

/* ---------- VÍDEO HERO INSTITUCIONAL ---------- */
.landing-video-hero { padding: 80px 0; background: var(--gelo, #f5f8fa); }
.landing-video-hero-wrap { display: flex; align-items: center; gap: 48px; }
.landing-video-hero-player { flex: 1.4; position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.12); background: #000; }
.landing-video-hero-player video { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.landing-video-hero-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.35); transition: opacity 0.3s; cursor: pointer; }
.landing-video-hero-overlay.oculto { opacity: 0; pointer-events: none; }
.landing-video-hero-play { width: 80px; height: 80px; border-radius: 50%; border: none; background: var(--verde, #63cc00); color: #fff; font-size: 1.8rem; cursor: pointer; display: grid; place-items: center; box-shadow: 0 6px 24px rgba(99,204,0,0.4); transition: transform 0.3s; animation: pulsePlay 2s ease-in-out infinite; }
.landing-video-hero-play:hover { transform: scale(1.1); }
@keyframes pulsePlay { 0%,100%{transform:scale(1);box-shadow:0 6px 24px rgba(99,204,0,0.4)} 50%{transform:scale(1.08);box-shadow:0 10px 36px rgba(99,204,0,0.6)} }
.landing-video-hero-controls { position: absolute; bottom: 12px; left: 12px; display: flex; gap: 8px; z-index: 2; }
.landing-video-ctrl-btn { width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(0,0,0,0.55); color: #fff; font-size: 0.9rem; cursor: pointer; display: grid; place-items: center; transition: background 0.2s; }
.landing-video-ctrl-btn:hover { background: rgba(0,0,0,0.8); }
.landing-video-hero-info { flex: 1; }
.landing-video-hero-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--azul-escuro, #0d3859); margin: 16px 0 4px; line-height: 1.3; }
.landing-video-hero-sub { font-size: 1.2rem; color: var(--verde, #63cc00); font-weight: 600; margin-bottom: 12px !important; }
.landing-video-hero-info p:last-child { font-size: 1rem; color: #556; line-height: 1.7; max-width: 420px; }

/* ---------- VÍDEOS DE APRESENTAÇÃO ---------- */
.landing-videos-apresentacao { padding: 80px 0; background: #fff; }
.landing-videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.landing-video-card { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); background: transparent; }
.landing-video-player { position: relative; line-height: 0; border-radius: 16px; overflow: hidden; }
.landing-video-player video { width: 100%; height: auto; min-height: 500px; object-fit: cover; display: block; border: none; outline: none; background: transparent; }
.landing-video-controls { position: absolute; bottom: 14px; right: 14px; display: flex; gap: 6px; z-index: 2; }
.landing-video-ctrl-btn { width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(0,0,0,0.6); color: #fff; font-size: 1rem; cursor: pointer; display: grid; place-items: center; transition: background 0.2s, transform 0.2s; }
.landing-video-ctrl-btn:hover { background: rgba(0,119,170,0.8); transform: scale(1.1); }
.landing-videos-cta { text-align: center; margin-top: 40px; }
.btn-cta-video {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--verde, #63cc00);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(99,204,0,0.35);
  transition: all 0.3s;
}
.btn-cta-video:hover {
  background: var(--verde-escuro, #4fa300);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(99,204,0,0.5);
}

/* ---------- SOBRE O BALNEÁRIO ---------- */
.landing-sobre-balneario { padding: 90px 0; background: #fff; }
.landing-sobre-balneario-topo { text-align: center; margin-bottom: 40px; }
.landing-sobre-balneario-topo h2 { font-size: 1.8rem; font-weight: 800; color: var(--azul-escuro, #0d3859); margin: 16px 0 0; line-height: 1.3; }
.landing-sobre-balneario-slider { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); margin-bottom: 32px; }
.landing-sobre-slide-container { position: relative; width: 100%; height: 400px; }
.landing-sobre-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.landing-sobre-slide.active { opacity: 1; }
.landing-sobre-slider-botoes { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 12px; z-index: 2; }
.landing-sobre-slider-btn { width: 40px; height: 40px; border-radius: 50%; border: none; background: rgba(255,255,255,0.85); color: var(--azul-escuro, #0d3859); font-size: 0.9rem; cursor: pointer; transition: background 0.2s, transform 0.2s; display: grid; place-items: center; }
.landing-sobre-slider-btn:hover { background: var(--azul, #0077aa); color: #fff; transform: scale(1.1); }
.landing-sobre-slider-dots { display: flex; gap: 8px; }
.landing-sobre-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.landing-sobre-dot.active { background: #fff; transform: scale(1.3); }
.landing-sobre-balneario-texto { text-align: center; max-width: 700px; margin: 0 auto; }
.landing-sobre-balneario-texto p { color: #556; font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }

/* ---------- MATÉRIAS ---------- */
.landing-materias { padding: 80px 0; background: var(--gelo, #f5f8fa); }
.landing-materias-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.landing-materia-card { display: flex; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.06); transition: transform 0.3s; }
.landing-materia-card:hover { transform: translateY(-6px); }
.landing-materia-img { flex: 0 0 280px; position: relative; overflow: hidden; }
.landing-materia-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.landing-materia-card:hover .landing-materia-img img { transform: scale(1.06); }
.landing-materia-badge { position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; border-radius: 50%; background: var(--azul, #0077aa); color: #fff; display: grid; place-items: center; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.landing-materia-conteudo { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; justify-content: center; }
.landing-materia-tag { display: inline-block; padding: 4px 12px; border-radius: 999px; background: var(--azul-suave, #e1eef7); color: var(--azul, #0077aa); font-size: 0.75rem; font-weight: 600; margin-bottom: 10px; width: fit-content; }
.landing-materia-conteudo h4 { font-size: 1.15rem; color: var(--azul-escuro, #0d3859); margin-bottom: 10px; line-height: 1.3; }
.landing-materia-conteudo p { font-size: 0.92rem; color: #556; line-height: 1.6; margin-bottom: 18px; }
.landing-materia-botoes { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-materia-link, .btn-materia-instagram { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.3s; }
.btn-materia-link { background: var(--azul, #0077aa); color: #fff; box-shadow: 0 4px 14px rgba(0,119,170,0.3); }
.btn-materia-link:hover { background: var(--azul-escuro, #0d3859); transform: translateY(-2px); }
.btn-materia-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); color: #fff; box-shadow: 0 4px 14px rgba(131,58,180,0.3); }
.btn-materia-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(131,58,180,0.4); }

/* ---------- CERTIFICADO ---------- */
.landing-fundador {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--gelo, #f5f8fa) 0%, #fff 100%);
}
.landing-fundador-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}
.landing-fundador-img {
  flex: 0 0 380px;
  position: relative;
}
.landing-fundador-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  position: relative;
  z-index: 1;
  transition: transform 0.4s;
}
.landing-fundador-img:hover img {
  transform: scale(1.03);
}
.landing-fundador-texto {
  flex: 1;
}
.desktop-only {
  display: block;
}
.landing-fundador-titulo-mobile {
  display: none;
}
.landing-fundador-texto h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul-escuro, #0d3859);
  margin: 16px 0 20px;
  line-height: 1.3;
}
.landing-fundador-texto p {
  font-size: 1rem;
  color: #556;
  line-height: 1.8;
  margin-bottom: 16px;
}
.landing-fundador-texto p:last-of-type {
  margin-bottom: 24px;
}
.landing-fundador-diploma {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--azul-suave, #e1eef7) 0%, rgba(99,204,0,0.08) 100%);
  border-radius: 14px;
}
.landing-fundador-diploma i {
  font-size: 1.8rem;
  color: var(--verde, #63cc00);
  margin-top: 2px;
}
.landing-fundador-diploma-icone {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.landing-fundador-diploma span {
  font-size: 0.9rem;
  color: var(--azul-escuro, #0d3859);
  line-height: 1.6;
  font-weight: 500;
}

/* ---------- BOTÃO VOLTAR AO TOPO ---------- */
.btn-voltar-topo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--verde, #63cc00);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(99,204,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.btn-voltar-topo.visivel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.btn-voltar-topo:hover {
  background: var(--verde-escuro, #4fa300);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(99,204,0,0.5);
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.centro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tag-secao {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--azul-suave, #e1eef7);
  color: var(--azul, #0077aa);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--azul-escuro, #0d3859);
  margin-top: 16px;
  line-height: 1.3;
}
.container {
  max-width: var(--landing-max);
  margin: 0 auto;
  padding: 0 var(--landing-padding);
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- SELETOR DE DATA (flatpickr) ---------- */
.flatpickr-innerContainer { overflow: visible !important; }
.flatpickr-month { overflow: visible !important; }
.flatpickr-weekdays { overflow: visible !important; }

/* ============================================================
   PRINT / PDF — Compactar espaçamentos para conversão
   ============================================================ */
@media print {
  /* Remover header fixo */
  .landing-header {
    position: static !important;
    background: #fff !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e1eef7 !important;
    padding: 12px var(--landing-padding) !important;
  }
  .landing-nav-cta, .landing-menu-toggle { display: none !important; }

  /* Hero compacto */
  .landing-hero {
    min-height: auto !important;
    padding: 40px var(--landing-padding) 20px !important;
    page-break-inside: avoid;
  }
  .landing-hero-container {
    gap: 24px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .landing-hero-left {
    max-width: 100% !important;
    text-align: center !important;
  }
  .landing-hero-pilares {
    justify-content: center !important;
  }
  .landing-hero-botoes {
    justify-content: center !important;
  }
  .landing-hero-right {
    max-width: 350px !important;
    order: -1 !important;
    margin-bottom: 16px !important;
  }
  .landing-hero-map-wrapper { max-width: 100% !important; }

  /* Banner transition */
  .landing-banner-transition {
    padding: 24px 16px !important;
    page-break-inside: avoid;
  }
  .landing-banner-text h2 { font-size: 1.5rem !important; }
  .landing-banner-sub p { font-size: 0.9rem !important; }

  /* Seções gerais */
  .landing-trilha,
  .landing-fundador,
  .landing-roteiro,
  .landing-videos-apresentacao,
  .landing-vivencias,
  .landing-sobre-balneario,
  .landing-materias,
  .landing-cta-inter {
    padding: 40px 0 !important;
    page-break-inside: avoid;
  }
  .landing-section-header { margin-bottom: 24px !important; }
  .section-title { font-size: 1.6rem !important; margin-top: 8px !important; }
  .tag-secao { font-size: 0.8rem !important; padding: 6px 16px !important; }

  /* Trilha */
  .landing-trilha-line { display: none !important; }
  .landing-trilha-items { flex-wrap: wrap !important; gap: 24px !important; justify-content: center !important; }
  .landing-trilha-item { flex: 0 0 auto !important; width: 140px !important; padding: 0 !important; }
  .landing-trilha-icone { width: 50px !important; height: 50px !important; font-size: 1.2rem !important; }
  .landing-trilha-ano { font-size: 1.2rem !important; }
  .landing-trilha-label { font-size: 0.75rem !important; max-width: 120px !important; }

  /* Certificado */
  .landing-fundador-wrap {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: center !important;
  }
  .landing-fundador-img { flex: none !important; max-width: 280px !important; margin: 0 auto !important; }
  .landing-fundador-texto h2 { font-size: 1.5rem !important; }
  .landing-fundador-texto p { font-size: 0.9rem !important; }
  .landing-fundador-diploma { flex-direction: column !important; align-items: center !important; text-align: center !important; padding: 16px !important; overflow: hidden !important; word-break: break-word !important; }
  .desktop-only { display: block !important; }
  .landing-fundador-titulo-mobile { display: none !important; }

  /* Roteiro */
  .landing-roteiro-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .landing-roteiro-card { page-break-inside: avoid !important; }
  .landing-roteiro-img { aspect-ratio: 4/3 !important; }
  .landing-roteiro-card h4 { font-size: 0.85rem !important; padding: 10px 12px 4px !important; }
  .landing-roteiro-card p { font-size: 0.75rem !important; padding: 0 12px 12px !important; }

  /* Vídeos - ocultar no PDF */
  .landing-videos-apresentacao { display: none !important; }

  /* Vivências */
  .landing-vivencias-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .landing-vivencia-card { page-break-inside: avoid !important; }
  .landing-vivencia-img { aspect-ratio: 16/10 !important; }
  .landing-vivencia-card h4 { font-size: 0.95rem !important; padding: 12px 14px 4px !important; }
  .landing-vivencia-card p { font-size: 0.8rem !important; padding: 0 14px 14px !important; }

  /* Balneário slider - mostrar apenas primeira imagem */
  .landing-sobre-balneario-slider { page-break-inside: avoid !important; }
  .landing-sobre-slide-container { height: auto !important; }
  .landing-sobre-slide { position: relative !important; opacity: 1 !important; height: auto !important; display: none !important; }
  .landing-sobre-slide.active { display: block !important; width: 100% !important; height: auto !important; max-height: 250px !important; object-fit: cover !important; border-radius: 12px !important; }
  .landing-sobre-slider-botoes, .landing-sobre-slider-dots { display: none !important; }
  .landing-sobre-balneario-texto p { font-size: 0.9rem !important; margin-bottom: 8px !important; }

  /* Matérias */
  .landing-materia-card { flex-direction: column !important; page-break-inside: avoid !important; }
  .landing-materia-img { flex: none !important; height: 180px !important; }
  .landing-materia-conteudo { padding: 16px 20px !important; }
  .landing-materia-conteudo h4 { font-size: 1rem !important; }
  .landing-materia-conteudo p { font-size: 0.85rem !important; }
  .landing-materia-botoes { flex-direction: column !important; gap: 8px !important; }
  .btn-materia-link, .btn-materia-instagram { justify-content: center !important; padding: 10px 16px !important; font-size: 0.8rem !important; }

  /* CTA intermediário */
  .landing-cta-inter { padding: 32px 16px !important; }
  .landing-cta-inter-content p { font-size: 1.1rem !important; }
  .landing-cta-inter-botoes { justify-content: center !important; }

  /* Footer */
  .landing-footer { padding: 24px 0 12px !important; }
  .landing-footer-top { padding-bottom: 16px !important; }
  .landing-footer-parceiros { gap: 16px !important; }
  .landing-footer-parceiros img { height: 36px !important; filter: none !important; opacity: 1 !important; }
  .landing-footer-parceiros img.logo-balneario { height: 44px !important; }
  .landing-footer-bottom p { font-size: 0.75rem !important; }

  /* Botões */
  .btn-landing { padding: 10px 20px !important; font-size: 0.8rem !important; }

  /* Ocultar botão voltar ao topo */
  .btn-voltar-topo { display: none !important; }

  /* Evitar quebras de página ruins */
  h2, h3, h4 { page-break-after: avoid !important; }
  .landing-roteiro-card, .landing-vivencia-card, .landing-materia-card,
  .landing-fundador-wrap, .landing-trilha-item { page-break-inside: avoid !important; }

  /* Reset reveal animations */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

  /* Ajuste de página */
  @page { margin: 16mm; }
  body { margin: 0 !important; padding: 0 !important; }
  html { font-size: 12px !important; }
}
