/* =============================================================
   IOP · Imersão no Mundo das Onças
   Estilos próprios — complementam o Tailwind
   ============================================================= */

:root {
  --bg:       #181818;
  --surface:  #242424;
  --accent:   #FEC400;
  --accent-2: #ffd84d;
  --muted:    #9A9A9A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: #fff;
  font-family: 'Montserrat', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ------- Seleção ------- */
::selection { background: var(--accent); color: #000; }

/* ------- Grão de fundo ------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ------- Eyebrow (pequeno rótulo antes de H2) ------- */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

/* ------- Highlight tag (palavra-chave com fundo preto/amarelo) ------- */
.hl {
  display: inline-block;
  background: #000;
  color: var(--accent);
  padding: 0.15em 0.55em;
  margin: 0 -0.55em;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  line-height: inherit;
  vertical-align: baseline;
}

/* ============================================================= */
/* BOTÕES CTA                                                    */
/* ============================================================= */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--accent);
  color: #0B0B0B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.875rem;
  padding: 1rem 1.75rem;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.btn-cta:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
}
.btn-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Pulse em loop — box-shadow amarela que se expande */
.btn-pulse {
  animation: pulse-glow 2.2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(254, 196, 0, 0.55),
                0 0 0 0 rgba(254, 196, 0, 0.25);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(254, 196, 0, 0),
                0 0 30px 4px rgba(254, 196, 0, 0.15);
  }
}

/* ============================================================= */
/* HERO · Imagem da onça (posicionamento à direita)              */
/* ============================================================= */

/* Desktop: onça empurrada bem à direita, rosto livre dos títulos */
.hero-onca-img {
  object-position: 85% center;
}
@media (max-width: 1023px) {
  /* Tablet/mobile: um pouco mais para o centro para não cortar demais */
  .hero-onca-img { object-position: 72% center; }
}
@media (max-width: 640px) {
  .hero-onca-img { object-position: 65% center; }
}

/* ============================================================= */
/* HERO · Vídeo vertical (YouTube Shorts)                        */
/* ============================================================= */

.hero-video {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.hero-video-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(254, 196, 0, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.7),
    0 0 0 8px rgba(254, 196, 0, 0.05),
    0 0 60px rgba(254, 196, 0, 0.15);
  transform: rotate(-1.5deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.hero-video-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 8px rgba(254, 196, 0, 0.08),
    0 0 80px rgba(254, 196, 0, 0.25);
}
.hero-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}
.hero-video-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(254, 196, 0, 0.4);
  white-space: nowrap;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c00;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

@media (max-width: 1023px) {
  .hero-video { max-width: 260px; }
  .hero-video-frame { transform: rotate(0deg); }
}

/* ============================================================= */
/* CARDS                                                          */
/* ============================================================= */

/* Atividades */
.card-atividade {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card-atividade::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,196,0,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-atividade:hover {
  transform: translateY(-4px);
  border-color: rgba(254,196,0,0.35);
}
.card-atividade:hover::before { opacity: 1; }
.card-atividade > * { position: relative; }
.card-icone {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  /* SVGs chegam em preto — brightness(0) invert(1) força branco pleno;
     drop-shadow amarelo dá o "aceso" que combina com o accent */
  filter: brightness(0) invert(1)
          drop-shadow(0 0 14px rgba(254,196,0,0.55))
          drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.card-atividade h3 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.card-atividade p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Incluso */
.card-incluso {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-incluso:hover {
  transform: translateY(-4px);
  border-color: rgba(254,196,0,0.35);
}
.card-incluso img {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  /* Mesma filtragem dos ícones de atividades: branco pleno + halo dourado */
  filter: brightness(0) invert(1)
          drop-shadow(0 0 14px rgba(254,196,0,0.55))
          drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.card-incluso:hover img {
  transform: scale(1.08);
  filter: brightness(0) invert(1)
          drop-shadow(0 0 22px rgba(254,196,0,0.75))
          drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}
.card-incluso h3 {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.card-incluso p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Turmas */
.card-turma {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.card-turma:hover {
  transform: translateY(-6px);
  border-color: rgba(254,196,0,0.5);
}
.card-turma.destaque {
  border-color: rgba(254,196,0,0.6);
  background: linear-gradient(180deg, rgba(254,196,0,0.08), var(--surface) 60%);
}
.card-turma-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.card-turma-numero {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(254,196,0,0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
}
.card-turma-mes {
  margin-top: 1rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);
}
.card-turma-datas {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 0.75rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card-turma-dias {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================= */
/* CRONOGRAMA                                                     */
/* ============================================================= */

.tag-dia {
  display: inline-block;
  background: var(--accent);
  color: #0B0B0B;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.dia-item {
  position: relative;
  padding-left: 1.5rem;
}
.dia-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

/* ============================================================= */
/* VÍDEOS                                                         */
/* ============================================================= */

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254,196,0,0.4);
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================= */
/* FAQ (accordion)                                                */
/* ============================================================= */

.faq-item {
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(254,196,0,0.1);
  border: 1px solid rgba(254,196,0,0.4);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--accent);
  color: #000;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-content {
  padding: 0 0 1.5rem 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 90%;
  animation: fadeDown 0.3s ease;
}
.faq-content a { text-decoration: underline; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================= */
/* REVEAL (fade-in-up ao entrar na viewport)                      */
/* ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================= */
/* UTILIDADES                                                     */
/* ============================================================= */

.animate-slow-spin {
  animation: slow-spin 28s linear infinite;
}
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Indicador de scroll do hero */
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(250%); }
}

/* ============================================================= */
/* RESPONSIVO — ajustes finos                                    */
/* ============================================================= */

@media (max-width: 640px) {
  .card-turma-datas { font-size: 2.75rem; }
  .btn-cta { padding: 0.9rem 1.5rem; font-size: 0.8rem; }
  .faq-item summary { font-size: 0.95rem; padding: 1.25rem 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn-pulse, .animate-slow-spin, .scroll-line::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================= */
/* O QUE É · Vídeo vertical na composição                         */
/* ============================================================= */

.imersao-video {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(254,196,0,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.7),
    0 0 0 8px rgba(254,196,0,0.05),
    0 0 60px rgba(254,196,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.imersao-video:hover {
  transform: scale(1.02);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.8),
    0 0 0 8px rgba(254,196,0,0.08),
    0 0 80px rgba(254,196,0,0.25);
}
.imersao-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.imersao-video-badge {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.05rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 24px rgba(254,196,0,0.4);
  white-space: nowrap;
  z-index: 2;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-glow 2.2s ease-in-out infinite;
}
.imersao-video-badge:hover {
  background: var(--accent-2);
  transform: translateX(-50%) translateY(-2px);
}
.imersao-video-badge .ico-mute { flex-shrink: 0; }
.imersao-video-badge.is-live {
  animation: none;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  border: 1px solid rgba(254,196,0,0.5);
  box-shadow: none;
}
.imersao-video-badge.is-live:hover {
  background: rgba(0,0,0,0.85);
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c00;
  animation: live-pulse 1.4s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}

/* ============================================================= */
/* MODAL DE RESERVA                                               */
/* ============================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.modal-overlay.is-open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: var(--surface);
  border: 1px solid rgba(254,196,0,0.25);
  border-radius: 20px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  padding: 2rem;
  margin: auto;
  animation: modalIn 0.35s cubic-bezier(0.2,0.8,0.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.modal-close:hover {
  background: var(--accent);
  color: #000;
  transform: rotate(90deg);
}

.modal-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.1;
  margin-top: 0.5rem;
  color: #fff;
}
.modal-title span { color: var(--accent); }
.modal-subtitle {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.modal-section-label {
  display: block;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

/* Formulário */
.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.modal-form .field-full {
  grid-column: 1 / -1;
}
.modal-form label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.modal-form input,
.modal-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #151515;
}
.modal-form input::placeholder,
.modal-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

/* Contrato embedado (HTML scrollável, substitui o iframe PDF) */
.modal-contract-wrap {
  position: relative;
}
.modal-contract-frame {
  width: 100%;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: #0f0f0f;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem 1.5rem;
  scroll-behavior: smooth;
}
.modal-contract-frame:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.modal-contract-frame::-webkit-scrollbar {
  width: 8px;
}
.modal-contract-frame::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
}
.modal-contract-frame::-webkit-scrollbar-thumb {
  background: rgba(254,196,0,0.3);
  border-radius: 4px;
}
.modal-contract-frame::-webkit-scrollbar-thumb:hover {
  background: rgba(254,196,0,0.5);
}

.contract-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.contract-body h4 {
  font-family: var(--font-display), 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}
.contract-body h5 {
  font-family: var(--font-display), 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent);
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contract-body p {
  margin-bottom: 0.6rem;
}
.contract-body strong {
  color: #fff;
}
.contract-body a {
  color: var(--accent);
  text-decoration: underline;
}
.contract-end-marker {
  margin-top: 1.5rem;
  padding-top: 0.8rem;
  border-top: 1px dashed rgba(254,196,0,0.35);
  text-align: center;
  color: var(--accent);
  font-style: italic;
  font-size: 0.8rem;
}

.modal-contract-hint {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--accent);
  opacity: 1;
  transition: opacity 0.35s ease;
}
.modal-contract-hint.is-done {
  opacity: 0;
  pointer-events: none;
}

/* Checkbox "Li e concordo" travado até scroll completar */
.modal-consent.is-locked {
  opacity: 0.5;
  cursor: not-allowed;
}
.modal-consent.is-locked input[type="checkbox"] {
  cursor: not-allowed;
  border-color: rgba(255,255,255,0.2);
}

/* Checkbox */
.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  background: rgba(254,196,0,0.05);
  border: 1px solid rgba(254,196,0,0.25);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.modal-consent:hover {
  background: rgba(254,196,0,0.1);
  border-color: rgba(254,196,0,0.5);
}
.modal-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}
.modal-consent input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.modal-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 11px;
  border: solid #000;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}
.modal-consent span {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.modal-consent a {
  color: var(--accent);
  text-decoration: underline;
}

/* Ações finais */
.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.modal-submit {
  flex: 1 1 auto;
  min-width: 200px;
  background: var(--accent);
  color: #0B0B0B;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  padding: 1rem 1.5rem;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.modal-submit:hover:not(:disabled) {
  background: var(--accent-2);
  transform: translateY(-2px);
}
.modal-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.modal-cancel {
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.modal-cancel:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Body lock quando modal abre */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .modal-card { padding: 1.5rem; }
  .modal-form { grid-template-columns: 1fr; }
  .modal-contract-frame { height: 260px; }
  .modal-title { font-size: 1.3rem; }
}

/* ============================================================= */
/* ONDE ACONTECE · Bússola decorativa (substitui imagem rústica) */
/* ============================================================= */
.bussola-card {
  display: flex;
}
.bussola-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(254,196,0,0.08), transparent 65%),
    linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  overflow: hidden;
}
.bussola-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254,196,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254,196,0,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.bussola-svg {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(254,196,0,0.2));
  animation: bussola-breathe 8s ease-in-out infinite;
}
@keyframes bussola-breathe {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
.bussola-meta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.bussola-coord {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-size: 0.85rem;
}
.bussola-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
}
@media (prefers-reduced-motion: reduce) {
  .bussola-svg { animation: none; transform: none; }
}
