@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0B1A2F;
  --navy-deep:  #071020;
  --gold:       #C9A84C;
  --gold-light: #E8C96F;
  --gold-pale:  #F5E8C2;
  --cream:      #FAF6EE;
  --white:      #FFFFFF;
  --text-muted: #8A96A8;
  --border:     rgba(201,168,76,0.25);

  --font-display: 'Verdana', Verdana, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--navy-deep);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Container ───────────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Header ──────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,16,32,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 48px;
  width: auto;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.85; }

.logo-escrita {
  height: 28px;
  width: auto;
  opacity: 0.9;
}evento-meta

.login-button{
    color: var(--gold);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    border: solid 1px var(--gold);
}

.login-button:hover { 
  color: var(--gold-light);
  border: solid 1px var(--gold-light);
}

/* ── Alert / Countdown Banner ────────────────────────────────────── */
.alerta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
  flex: 1;
  min-width: 240px;
}

.alerta {
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.65rem 1.2rem;
  font-size: 0.875rem;
}

.alerta p {
  color: var(--gold-pale);
  margin: 0;
}

#contador {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}

.alerta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.alerta a:hover { border-color: var(--gold); }

/* ── Main ────────────────────────────────────────────────────────── */
.main {
  padding: 2rem 0 4rem;
}

/* ── Section 1 — Hero ────────────────────────────────────────────── */
.section-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 60vh;
  padding: 3rem 0 4rem;
  position: relative;
}

.section-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.section-1 .slogan h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--white) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-1 .slogan p {
  font-size: 1.15rem;
  color: var(--gold-pale);
  font-weight: 300;
  letter-spacing: 0.04em;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.section-1 .foto {
  position: relative;
}

.section-1 .foto::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.section-1 .foto img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
}

/* ── Shared Section Styles ───────────────────────────────────────── */
.section-8,
.section-9 {
  padding: 4rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}

/* ── Section 8 — centered/stacked layout ────────────────────────── */
.section-8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-8 .titulo {
  grid-column: 1 / -1;
}

.titulo h3,
.titulo-9 h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.25;
  position: relative;
  padding-bottom: 0.75rem;
}

.titulo h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.section-8 .box {
  color: var(--cream);
  font-size: 0.97rem;
  line-height: 1.85;
}

.section-8 .box p { margin-bottom: 1rem; }

.img-box-stand {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  border: 1px solid var(--border);
}

/* ── Section 9 — side-by-side ────────────────────────────────────── */
.section-9 {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}

.section-9 .box img.img-box-stand {
  height: 360px;
}

.div-grup {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.titulo-9 h3 {
  position: relative;
  padding-bottom: 0.75rem;
}

.titulo-9 h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.box-9 p,
.box-texto p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

/* ── Sponsorship Tiers ───────────────────────────────────────────── */
.niveis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.niveis > div {
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.niveis > div:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.niveis h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.niveis p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.niveis .um {
  background: linear-gradient(160deg, rgba(201,168,76,0.18) 0%, rgba(201,168,76,0.04) 100%);
  border-color: rgba(201,168,76,0.5);
}
.niveis .um h3 { color: var(--gold-light); }

.niveis .dois {
  background: rgba(148,160,184,0.06);
  border-color: rgba(148,160,184,0.3);
}
.niveis .dois h3 { color: #C0C8D6; }

.niveis .tres {
  background: rgba(180,124,70,0.08);
  border-color: rgba(180,124,70,0.3);
}
.niveis .tres h3 { color: #D4A070; }

/* ── VIP List ────────────────────────────────────────────────────── */
.sub-box { margin: 0.5rem 0; }

.ul-estilo {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ul-estilo li {
  font-size: 0.93rem;
  color: var(--cream);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}

.ul-estilo li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.ul-estilo li:first-child {
  font-weight: 600;
  color: var(--gold-pale);
  padding-left: 0;
}
.ul-estilo li:first-child::before { display: none; }

/* ── WhatsApp Float Button ───────────────────────────────────────── */
.whatsapp-botao {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  transition: transform 0.2s;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

.whatsapp-botao:hover { transform: scale(1.08); }

.whatsapp-botao img {
  width: 58px;
  height: 58px;
}

/* ── Próximos Eventos ────────────────────────────────────────────── */
.section-proximos-eventos {
  padding: 4rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.proximos-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.proximos-header .label-topo {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.proximos-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.proximos-header h3 span {
  color: var(--gold-light);
}

.proximos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.evento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  background: var(--navy);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.evento-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.evento-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.3s, transform 0.4s;
}

.evento-card:hover .evento-card-img {
  opacity: 0.35;
  transform: scale(1.04);
}

.evento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,16,32,0.97) 0%, rgba(7,16,32,0.55) 55%, transparent 100%);
}

.evento-card-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem 1.75rem 1.75rem;
}

.evento-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 99px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.85rem;
}

.evento-card-body h4 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.evento-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.evento-card-footer {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.evento-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.evento-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.evento-meta strong {
  font-size: 0.9rem;
  color: var(--gold-pale);
  font-weight: 500;
}

.evento-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.evento-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.evento-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .proximos-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .evento-card { min-height: 300px; }

  .section-1,
  .section-8,
  .section-9 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-8 .titulo { grid-column: 1; }

  .section-9 .box img.img-box-stand,
  .img-box-stand {
    height: 220px;
  }

  .niveis {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section-1 .slogan h2 { font-size: 2rem; }
}

@media (max-width: 560px) {
  .container { padding: 0 1.25rem; }
  .alerta { flex-direction: column; align-items: flex-start; }
  .alerta-item { flex-direction: column; align-items: flex-start; }

  .logo { height: 36px; }
  .logo-escrita { height: 20px; }
}