:root {
  --amarelo: #edb94b;
  --amarelo-escuro: #d9a530;
  --amarelo-claro: #f6d98b;
  --amarelo-fundo: #fdf4dd;
  --creme: #fffaf0;
  --azul: #2c4386;
  --azul-escuro: #1d2f5f;
  --azul-claro: #3d579e;
  --branco: #ffffff;
  --cinza-claro: #f4f6fb;
  --cinza: #e4e8f1;
  --texto: #262b33;
  --texto-suave: #5c6373;
  --radius: 10px;
  --sombra-suave: 0 6px 18px rgba(44, 67, 134, 0.1);
  --sombra-media: 0 12px 30px rgba(29, 47, 95, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 100px; }

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: var(--texto);
  background-color: var(--branco);
  background-image: none;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--azul); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.25; }
h2 { font-size: 1.95rem; margin-bottom: 12px; color: var(--azul-escuro); }
h3 { font-size: 1.15rem; color: var(--azul-escuro); }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-block { display: block; width: 100%; }

.btn-primary { background: var(--azul); color: var(--branco); }
.btn-primary:hover { background: var(--azul-escuro); }

.btn-yellow { background: var(--amarelo); color: var(--azul-escuro); }
.btn-yellow:hover { background: var(--amarelo-claro); }

.btn-outline { background: transparent; color: var(--azul); border-color: var(--azul); }
.btn-outline:hover { background: var(--azul); color: var(--branco); }

.btn-ghost { background: rgb(233, 233, 233); color: var(--azul-escuro); border-color: var(--azul-escuro); }
.btn-ghost:hover { background: var(--branco); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 185, 75, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--azul);
  box-shadow: 0 3px 14px rgba(29, 47, 95, 0.14);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.brand { display: flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand-logo { width: 178px; height: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--azul-escuro); font-weight: 600; font-size: 0.9rem; }
.site-nav a:hover { color: var(--azul); text-decoration: none; }
.site-nav .btn-primary, .site-nav .btn-primary:hover { color: var(--branco); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--azul-escuro); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(237, 186, 75, 0.877) 0%, rgba(33, 55, 116, 0.986) 90%), 
              url('../img/corpore.jpg') no-repeat center center / cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px; top: -140px;
  width: 460px; height: 460px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
  padding: 64px 20px 66px;
}

.hero-tag {
  display: inline-block;
  color: var(--branco);
  background: var(--azul-escuro);
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero h1 { 
  font-size: 3rem; 
  font-weight: 800; 
  color: var(--branco); 
  margin-bottom: 16px; 
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.5px;
}

.hero h1 .titulo-destaque {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-left: 6px solid var(--amarelo);
  padding: 4px 16px;
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(4px);
  margin-bottom: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero h1 span:not(.titulo-destaque) {
  display: inline-block;
  color: var(--azul-escuro);
  background: var(--amarelo);
  padding: 2px 16px 6px;
  border-radius: 10px;
  margin-top: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.hero-sub { 
  max-width: 520px; 
  font-size: 1.05rem; 
  margin-bottom: 26px; 
  color: #f0f4f8; 
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badges li {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--azul-escuro);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.hero-badges strong { color: var(--azul); }

.hero-media { display: flex; justify-content: center; }
.video-frame {
  position: relative;
  height: min(560px, 72vh);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid var(--azul);
  box-shadow: 0 15px 35px rgb(0, 0, 0);
  background: var(--azul-escuro);
  transform: translateZ(0);
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* ---------- Faixa ---------- */
.strip { background: var(--azul); color: var(--branco); }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 26px 20px;
}
.strip-item { text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.strip-item:last-child { border-right: 0; }
.strip-item strong { display: block; color: var(--amarelo); font-size: 1.1rem; font-weight: 800; }
.strip-item span { font-size: 0.82rem; color: #d5dcef; }

/* ---------- Seções ---------- */
.section { padding: 72px 0; }
.section-cream { background: var(--amarelo-fundo); }
.section-blue { background: var(--azul); color: var(--branco); }
.section-blue h2 { color: var(--branco); }

.section-head { max-width: 680px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--texto-suave); }
.section-blue .section-head p { color: #dbe1f0; }

.eyebrow {
  display: inline-block;
  color: var(--azul-escuro);
  background: rgba(237, 185, 75, 0.35);
  border-left: 4px solid var(--azul);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow-light { background: rgba(237, 185, 75, 0.2); border-left-color: var(--amarelo); color: var(--amarelo); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-2-top { align-items: start; }
.grid-2 p { margin-bottom: 14px; color: var(--texto-suave); }

/* ---------- Sobre ---------- */
#sobre {
  background: 
    linear-gradient(135deg, rgba(29, 47, 95, 0.952) 0%, rgba(22, 34, 71, 0.918) 100%),
    url('../img/sobre-bg.jpg') no-repeat center center / cover;
  position: relative;
}

#sobre h2 {
  font-size: 2.4rem;
  color: var(--branco);
  margin-bottom: 18px;
}

#sobre p {
  color: #e2e8f0;
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

#sobre .eyebrow {
  background: rgba(237, 185, 75, 0.25);
  color: var(--amarelo);
  border-left-color: var(--amarelo);
}

.about-media { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  background: var(--azul);
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(10, 18, 40, 0.4);
  position: relative;
}

@media (min-width: 961px) {
  .about-media { margin: 0; }
}

.about-media .video-frame {
  width: 100%;
  height: min(620px, 80vh);
  border: 3px solid var(--amarelo);
  border-radius: 18px;
  position: relative;
  overflow: visible !important;
  background: var(--azul-escuro);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
}

.about-media .video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.video-logo-badge {
  position: absolute;
  right: -16px;   /* Joga um pouco para fora da borda direita */
  bottom: -16px;  /* Joga um pouco para fora da borda inferior */
  background: rgba(237, 185, 75, 0.95);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 20;
  max-width: 125px;
  transition: transform 0.3s ease;
}

.video-logo-badge:hover { 
  transform: scale(1.05); 
}

.video-logo-badge img { 
  width: 100%; 
  height: auto; 
  display: block; 
  border-radius: 0; 
}

.features { 
  list-style: none; 
  margin-top: 26px; 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 18px; 
}
.features li { background: transparent; padding: 0; }

.feature-card {
  background: var(--branco);
  border: 1px solid var(--cinza);
  border-left: 4px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(44, 67, 134, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 67, 134, 0.12);
  border-left-color: var(--azul); 
}
.features strong { display: block; color: var(--azul-escuro); font-size: 0.98rem; margin-bottom: 4px; }
.features span { font-size: 0.85rem; color: var(--texto-suave); }

/* ---------- Planos ---------- */
.plans { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 26px; 
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--branco);
  border: 1px solid var(--cinza);
  border-top: 5px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sombra-suave);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sombra-media); }

.plan-featured {
  background: var(--azul);
  border-color: var(--azul);
  border-top-color: var(--amarelo);
  transform: none;
}
.plan-featured:hover { transform: translateY(-4px); }
.plan-featured h3 { color: var(--branco); }
.plan-featured .plan-list li { color: #e2e8f0; border-bottom-color: rgba(255, 255, 255, 0.15); }
.plan-featured .plan-list li::before { color: var(--amarelo); }
.plan-featured .plan-price { color: var(--amarelo); }
.plan-featured .plan-price small { color: #cbd5e1; }

.plan-flag {
  position: absolute;
  top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(29, 47, 95, 0.2);
}

.plan h3 { text-align: center; }
.plan-price {
  text-align: center;
  margin: 16px 0 22px;
  color: var(--azul);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}
.plan-price span { font-size: 1.2rem; vertical-align: super; margin-right: 2px; }
.plan-price small { font-size: 0.92rem; font-weight: 600; color: var(--texto-suave); }

.plan-list { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--cinza);
  font-size: 0.9rem;
  color: var(--texto-suave);
}
.plan-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--amarelo-escuro); font-weight: 800; }
.plans-note { text-align: center; margin-top: 34px; color: var(--texto-suave); font-size: 0.9rem; }

/* ---------- Galeria ---------- */
.gallery { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 16px; 
}
.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--amarelo-fundo);
  border: 1px solid var(--cinza);
  box-shadow: var(--sombra-suave);
  display: flex;
  flex-direction: column;
}
.gallery-video-wrap {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--azul-escuro);
}
.gallery-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery figure:hover .gallery-video-wrap video { transform: scale(1.06); }
.gallery figcaption { 
  padding: 14px; 
  font-weight: 700; 
  font-size: 0.88rem; 
  color: var(--azul); 
  text-align: center; 
  background: var(--branco);
  border-top: 1px solid var(--cinza);
}

/* ---------- Avaliações ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reviews blockquote {
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 24px;
}
.reviews p { margin-bottom: 12px; font-style: italic; color: #eef1f8; }
.reviews cite { color: var(--amarelo); font-weight: 700; font-style: normal; font-size: 0.85rem; }
.rating-line { font-size: 1.05rem; }
.rating-line strong { color: var(--amarelo); font-size: 1.5rem; }

/* ---------- Horários / Contato ---------- */
.hours { width: 100%; border-collapse: collapse; margin-top: 22px; }
.hours th, .hours td { padding: 13px 10px; text-align: left; border-bottom: 1px solid var(--cinza); font-size: 0.92rem; }
.hours th { color: var(--azul-escuro); font-weight: 700; }
.hours td { color: var(--texto-suave); }
.hours-note { margin-top: 14px; font-size: 0.8rem; color: var(--texto-suave); }

.contact-box {
  background: var(--creme);
  border-top: 5px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--sombra-suave);
}
.hours-box {
  background-color: #ffffff;
  border-top-color: var(--azul) !important;
}
.contact-list { list-style: none; margin: 18px 0 24px; }
.contact-list li { padding: 12px 0; border-bottom: 1px solid var(--cinza); }
.contact-list strong { display: block; color: var(--azul-escuro); font-size: 0.88rem; }
.contact-list span, .contact-list a { color: var(--texto-suave); font-size: 0.9rem; }

#horarios {
  background-color: #f4f6fa;
  background-image: 
    linear-gradient(to right, rgba(44, 67, 134, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(44, 67, 134, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative;
}

/* ---------- Mapa Reduzido ---------- */
.map-wrap { 
  line-height: 0; 
}

.map-wrap iframe { 
  width: 100%; 
  height: 380px; 
  border: 0; 
  display: block; 
  filter: saturate(0.9); 
}

/* ---------- Contrato ---------- */
.contract { max-width: 800px; }
.contract h2 { text-align: center; }
.contract-text {
  background: var(--branco);
  border: 1px solid var(--cinza);
  border-left: 5px solid var(--amarelo);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.contract-text h3 { margin: 18px 0 8px; }
.contract-text h3:first-child { margin-top: 0; }
.contract-text p { color: var(--texto-suave); font-size: 0.91rem; }

.contract-accept {
  background: var(--branco);
  border: 1px solid var(--cinza);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--sombra-suave);
}
.checkbox { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; font-size: 0.89rem; color: var(--texto-suave); cursor: pointer; }
.checkbox input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--amarelo); flex-shrink: 0; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--azul-escuro); margin-bottom: 6px; }
.form-row input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cinza);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-row input:focus { outline: none; border-color: var(--amarelo); box-shadow: 0 0 0 3px rgba(237, 185, 75, 0.35); }
.form-msg { margin-top: 14px; font-size: 0.9rem; font-weight: 600; }
.form-msg.ok { color: #1d7a3c; }
.form-msg.error { color: #b3261e; }

/* ---------- Footer ---------- */
.site-footer { background: var(--azul-escuro); color: #cfd6e8; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding: 50px 20px 34px;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; }
.logo-badge {
  background: var(--branco);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  flex-shrink: 0;
}
.logo-badge img { width: 148px; height: auto; display: block; }
.footer-brand strong { color: var(--branco); display: block; font-size: 1.08rem; }
.footer-brand p { font-size: 0.83rem; color: var(--amarelo); margin-top: 6px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { color: #cfd6e8; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--amarelo); text-decoration: none; }
.footer-contact p { font-size: 0.86rem; margin-bottom: 8px; }
.footer-contact a { color: var(--amarelo); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-bottom p { text-align: center; padding: 16px 0; font-size: 0.78rem; color: #aeb8d0; }

/* ---------- WhatsApp Flutuante ---------- */
.whats-float {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--branco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 60;
}
.whats-float:hover { text-decoration: none; background: #1ebe5b; }

/* ---------- Revelação Suave ---------- */
.reveal { opacity: 0; translate: 0 18px; transition: opacity 0.6s ease, translate 0.6s ease; }
.reveal.visible { opacity: 1; translate: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo (Breakpoints) ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 52px 20px 60px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .strip-item:nth-child(2) { border-right: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }

  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--amarelo);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    border-bottom: 3px solid var(--azul);
    box-shadow: var(--sombra-media);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(29, 47, 95, 0.18); }
  .site-nav .btn-primary { margin-top: 14px; border-bottom: 0; }
}

@media (max-width: 520px) {
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  h2 { font-size: 1.55rem; }
  .hero h1 { font-size: 1.85rem; }
  .hero-tag { font-size: 0.66rem; }
  .section { padding: 52px 0; }
  .brand-logo { width: 148px; height: auto; }
  .video-frame { height: min(520px, 66vh); }
  .strip-inner { grid-template-columns: 1fr; gap: 18px; }
  .strip-item { border-right: 0; }
}

@media (max-width: 768px) {
  .about-media {
    max-width: 100% !important;
    padding: 16px !important;
    box-sizing: border-box;
  }
  
  .about-media .video-frame {
    height: auto !important;
    aspect-ratio: 9 / 16;
    max-height: 480px;
  }
}

.plan-checkbox {
  margin: 16px 0 14px 0;
  font-size: 0.82rem;
  color: var(--texto-suave);
  text-align: left;
}

.plan-checkbox a {
  color: var(--azul);
  text-decoration: underline;
}

.plan-checkbox-featured {
  color: #e2e8f0;
}

.plan-checkbox-featured a {
  color: var(--amarelo);
}

/* Estado desativado do botão nos planos */
.plan-btn.disabled,
.plan-btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

.terms-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.terms-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.terms-modal-content {
  background: var(--branco);
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--sombra-media);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.terms-modal-overlay.active .terms-modal-content {
  transform: translateY(0);
}

.terms-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--texto-suave);
  cursor: pointer;
  line-height: 1;
}

.terms-modal-close:hover {
  color: var(--azul-escuro);
}

.terms-modal-content h2 {
  font-size: 1.4rem;
  color: var(--azul-escuro);
  margin-bottom: 16px;
  padding-right: 30px;
}

.terms-modal-body {
  overflow-y: auto;
  max-height: 50vh;
  margin-bottom: 24px;
  padding-right: 6px;
}

.terms-modal-body h3 {
  font-size: 1.02rem;
  color: var(--azul);
  margin: 14px 0 6px;
}

.terms-modal-body h3:first-child {
  margin-top: 0;
}

.terms-modal-body p {
  font-size: 0.9rem;
  color: var(--texto-suave);
  margin-bottom: 10px;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 14px 0;
  font-size: 0.82rem;
  color: var(--texto-suave);
  text-align: left;
}

.checkbox-container input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--amarelo);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-container .checkbox-text a {
  color: var(--azul);
  text-decoration: underline;
}

.plan-checkbox-featured .checkbox-text {
  color: #e2e8f0;
}

.plan-checkbox-featured .checkbox-text a {
  color: var(--amarelo);
}

.plan-msg {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b3261e;
  text-align: center;
  min-height: 20px;
}

/* ---------- Correção da imagem no celular para não cortar ---------- */
.about-media { 
  display: flex; 
  justify-content: center; 
  align-items: center;
  background: var(--azul);
  width: 100%;
  max-width: 450px; /* Aumentado para o card ficar maior e mais imponente no PC */
  margin: 0 auto;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(10, 18, 40, 0.4);
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 961px) {
  .about-media { 
    margin: 0; 
  }
}

.about-media .video-frame {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  max-height: none !important;
  border: 3px solid var(--amarelo);
  border-radius: 16px;
  position: relative;
  overflow: visible !important;
  background: var(--azul-escuro);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.about-media .video-frame img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important; /* Mantém a imagem 100% inteira sem cortes */
  display: block;
  border-radius: 13px;
}

/* Responsividade adaptada para telas menores (celular) */
@media (max-width: 768px) {
  .about-media {
    max-width: 320px !important; /* Mantém compacto e ideal em smartphones */
    padding: 12px !important;
  }
}