/* ===================== VARIÁVEIS ===================== */
:root {
  --magenta: #d6006e;
  --magenta-dark: #9e0052;
  --magenta-soft: #fce4f0;
  --gold: #f9a825;
  --gold-dark: #f57f17;
  --ink: #241820;
  --muted: #6b5b64;
  --light: #ffffff;
  --tint: #fdf6fa;
  --dark: #1c1017;
  --radius: 16px;
  --shadow: 0 18px 45px rgba(158, 0, 82, 0.14);
  --maxw: 1120px;
}

/* ===================== RESET ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800; font-size: 1.05rem; letter-spacing: .3px;
  text-align: center; text-transform: uppercase;
  padding: 18px 38px; border-radius: 50px; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn--cta {
  --glow: 245, 127, 23;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #3a2600;
  box-shadow: 0 12px 28px rgba(245, 127, 23, .38);
}
.btn--cta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(245, 127, 23, .5); }
.btn--secondary {
  --glow: 214, 0, 110;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: #fff; box-shadow: 0 12px 28px rgba(214, 0, 110, .32);
}
.btn--secondary:hover { transform: translateY(-3px); }
.btn--whats {
  background: #25d366; color: #fff; text-transform: none; font-size: 1.1rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .35);
}
.btn--whats:hover { transform: translateY(-3px); filter: brightness(1.05); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 168, 37, .22), transparent 45%),
    linear-gradient(135deg, #2a0e1e 0%, #6a0a3c 55%, #a11056 100%);
  color: #fff;
  overflow: hidden;
  padding: 0;
  display: flex; flex-direction: column;
}
/* No desktop, a Hero ocupa EXATAMENTE a primeira dobra e a barra rolante fica sempre colada no fim dela */
@media (min-width: 901px) {
  .hero { height: 100vh; }
  /* o vídeo escala com a altura da tela, então todo o conteúdo encolhe junto e nada passa da dobra */
  .video-placeholder { height: 42vh; min-height: 190px; max-height: 440px; aspect-ratio: auto; }
}
.hero > .container {
  position: relative; z-index: 1;
  flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 40px; padding-bottom: 26px;
}
/* Telas de laptop mais baixas: compacta o topo e reduz o vídeo para sobrar espaço */
@media (min-width: 901px) and (max-height: 820px) {
  .hero > .container { padding-top: 26px; padding-bottom: 16px; }
  .hero__logo { height: 50px; margin-bottom: 10px; }
  .hero__title { font-size: clamp(1.9rem, 4vw, 3rem); }
  .hero__head { margin-bottom: 14px; }
  .hero__head .hero__subtitle { margin-top: 8px; font-size: 1rem; }
  .hero__panel { padding: 18px 24px; }
  .hero__cta { margin-top: 14px; }
  .video-placeholder { height: 38vh; min-height: 160px; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 90%, rgba(214, 0, 110, .35), transparent 40%);
  pointer-events: none;
}

/* Cabeçalho geral (largura total, centralizado) */
.hero__head { position: relative; z-index: 1; text-align: center; margin-bottom: 36px; }
.hero__head .hero__subtitle {
  max-width: 720px; margin: 18px auto 0; text-align: center;
}
.hero__logo { height: 66px; width: auto; margin: 0 auto 22px; display: block; }
@media (max-width: 480px) { .hero__logo { height: 50px; } }

.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
}
.hero__content { display: flex; }
.badge {
  display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 700;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(249, 168, 37, .18); color: var(--gold);
  border: 1px solid rgba(249, 168, 37, .5);
  padding: 7px 18px; border-radius: 50px; margin-bottom: 18px;
}
.hero__title {
  font-family: "Montserrat", sans-serif; font-weight: 900;
  font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.04; letter-spacing: -1px;
  text-transform: uppercase;
  background: linear-gradient(120deg, var(--gold) 0%, #ffd54f 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Bloco único (subtítulo + dados do evento) */
.hero__panel {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  background: rgba(255, 255, 255, .08); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius); padding: 30px 32px;
}
.hero__subtitle { font-size: 1.1rem; color: rgba(255,255,255,.92); }

.event-card__tag {
  display: inline-block; font-family: "Montserrat", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; font-size: .82rem;
  color: var(--gold); margin-bottom: 12px;
}
.event-card__list li { padding-left: 26px; position: relative; margin-bottom: 6px; color: rgba(255,255,255,.92); }
.event-card__list li::before { content: "▹"; position: absolute; left: 0; color: var(--gold); }
.event-card__limit {
  margin-top: 14px; font-family: "Montserrat", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; color: #fff;
  background: var(--magenta); display: inline-block; padding: 8px 18px; border-radius: 50px; font-size: .9rem;
}

/* placeholder do vídeo hero */
.hero__media { display: flex; justify-content: center; }
.video-placeholder {
  width: 100%; height: 100%; min-height: 300px; aspect-ratio: 16 / 9; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
  border: 2px dashed rgba(255,255,255,.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.75); box-shadow: var(--shadow);
}

/* Botão centralizado da Hero */
.hero__cta { position: relative; z-index: 1; text-align: center; margin: 30px 0 0; }

/* Animação de pulso do botão */
.btn--pulse { animation: btnPulse 2.2s ease-in-out infinite; }
.btn--pulse:hover { animation-play-state: paused; }
@keyframes btnPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 12px 28px rgba(var(--glow), .40); }
  50% { transform: translateY(-4px); box-shadow: 0 0 0 8px rgba(var(--glow), .16), 0 20px 42px rgba(var(--glow), .60); }
}

/* Barra rolante (marquee) no final da Hero */
.hero__marquee {
  position: relative; z-index: 1; overflow: hidden;
  background: rgba(0, 0, 0, .30);
  border-top: 1px solid rgba(249, 168, 37, .40);
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; white-space: nowrap;
  animation: marquee 28s linear infinite; will-change: transform;
}
.marquee__item {
  font-family: "Montserrat", sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; font-size: .9rem; color: #fff; padding: 0 24px; position: relative;
}
.marquee__item::after {
  content: "✦"; color: var(--gold); position: absolute; right: -5px; top: 50%; transform: translateY(-50%); font-size: .8rem;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .btn--pulse { animation: none; }
}
.video-placeholder__play {
  width: 74px; height: 74px; border-radius: 50%;
  background: rgba(249,168,37,.95); color: #3a2600;
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
  box-shadow: 0 0 0 12px rgba(249,168,37,.18);
}
.video-placeholder span { font-family: "Montserrat", sans-serif; font-weight: 700; }
.video-placeholder small { font-size: .78rem; opacity: .7; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section--light { background: var(--light); }
.section--tint { background: var(--tint); }
.section--dark { background: var(--dark); color: #fff; }

.section__title {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem); text-align: center; line-height: 1.15;
  color: var(--magenta); margin-bottom: 44px; text-transform: uppercase; letter-spacing: -.5px;
}
.section__title--left { text-align: left; }
.section--dark .section__title { color: #fff; }

.prose { max-width: 780px; margin: 0 auto; }
.prose p { font-size: 1.12rem; color: var(--muted); margin-bottom: 20px; }
.prose strong { color: var(--ink); }

/* ===================== CARDS ===================== */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); border-top: 4px solid var(--gold);
  transition: transform .25s ease;
}
.card:hover { transform: translateY(-6px); }
.card__icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 {
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 1.2rem;
  color: var(--magenta); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 12px;
}
.card p { color: var(--muted); }

/* ===================== DEPOIMENTOS ===================== */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 900px; margin: 0 auto; }
.testimonial { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }

/* ===================== CTA BAND ===================== */
.cta-band { text-align: center; background:
    radial-gradient(circle at 50% 0%, rgba(214,0,110,.35), transparent 55%), var(--dark); }
.cta-band__title {
  font-family: "Montserrat", sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.2; text-transform: uppercase;
  margin-bottom: 34px;
}

/* ===================== SOBRE / MARISOL ===================== */
/* Topo em largura total */
.about__head { text-align: center; max-width: 840px; margin: 0 auto 44px; }
.about__head .section__title { margin-bottom: 0; }
.about__lead { font-size: 1.2rem; color: var(--muted); margin-top: 16px; }

/* Duas colunas: foto grande + texto */
.about__cols { display: grid; grid-template-columns: .92fr 1.08fr; gap: 46px; align-items: stretch; }
.about__photo { display: flex; }
.about__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 32% center;
  min-height: 460px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  border: 5px solid #fff; outline: 3px solid var(--gold);
}
.about__text p { color: var(--muted); margin-bottom: 16px; }
.about__text strong { color: var(--ink); }
.about__list { margin: 4px 0 26px; }
.about__list li { padding-left: 26px; position: relative; margin-bottom: 8px; color: var(--muted); }
.about__list li::before { content: "✔"; position: absolute; left: 0; color: var(--magenta); font-weight: 700; }

/* ===================== PREÇOS ===================== */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 340px)); gap: 30px; justify-content: center; }
.plan {
  background: #fff; border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: var(--shadow); border: 2px solid transparent; display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--gold); transform: scale(1.03); }
.plan__ribbon {
  position: absolute; top: 18px; right: -34px; transform: rotate(45deg);
  background: var(--gold); color: #3a2600; font-family: "Montserrat", sans-serif; font-weight: 800;
  padding: 6px 44px; font-size: .8rem; letter-spacing: 1px;
}
.plan__head {
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px; text-align: center; padding: 20px; font-size: 1.25rem;
}
.plan__body { padding: 34px 28px; text-align: center; display: flex; flex-direction: column; flex: 1; }
.plan__price {
  font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 3rem; color: var(--ink); line-height: 1;
}
.plan__price span { font-size: 1.4rem; vertical-align: super; }
.plan__note { color: var(--muted); font-size: .95rem; }
.plan__or { color: var(--magenta); font-weight: 600; margin: 10px 0 2px; }
.plan__install { font-size: 1.2rem; color: var(--ink); }
.plan__install strong { color: var(--magenta); }
.plan__btn { margin-top: auto; width: 100%; margin-top: 24px; font-size: .95rem; padding: 16px 20px; }

/* ===================== WHATSAPP ===================== */
.whats { text-align: center; }
.whats__phone {
  font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 2rem;
  color: var(--ink); margin-bottom: 26px;
}

/* ===================== RODAPÉ ===================== */
.footer { background: #140b10; color: rgba(255,255,255,.7); padding: 50px 0 40px; text-align: center; }
.footer__nav { display: flex; gap: 14px; justify-content: center; align-items: center; margin-bottom: 16px; }
.footer__nav a { color: #fff; font-weight: 600; }
.footer__nav a:hover { color: var(--gold); }
.footer__nav span { color: rgba(255,255,255,.4); }
.footer__copy { font-weight: 600; color: #fff; margin-bottom: 18px; }
.footer__disclaimer { max-width: 820px; margin: 0 auto; font-size: .78rem; line-height: 1.7; color: rgba(255,255,255,.45); }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whats-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 50;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
  transition: transform .2s ease;
}
.whats-float:hover { transform: scale(1.08); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 900px) {
  .hero { padding: 24px 0 0; }
  /* No celular, empilha na ordem: logo/título → vídeo → botão → dados do evento */
  .hero > .container { display: flex; flex-direction: column; }
  .hero__inner { display: contents; }
  .hero__head { order: 0; margin-bottom: 22px; }
  .hero__media { order: 1; margin-bottom: 18px; }
  .hero__cta { order: 2; margin: 0 0 22px; }
  .hero__content { order: 3; }
  /* vídeo sem estouro de largura: proporção segue a largura */
  .video-placeholder { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .cards { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; max-width: 520px; }
  .about__cols { grid-template-columns: 1fr; gap: 26px; }
  .about__photo { max-width: 520px; margin: 0 auto; }
  .about__photo img { height: auto; min-height: 0; aspect-ratio: 3 / 2; }
  .section__title--left { text-align: center; }
  .pricing { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .btn--cta, .btn--secondary { width: 100%; padding: 16px 20px; font-size: .95rem; }
  .event-card { padding: 20px; }
}
