/* =========================================
   VARIÁVEIS GERAIS CORES BASE
=========================================
:root {
  --grad: linear-gradient(135deg,#ff00cc 0%, #7c3aed 100%);
  --grad-blue: linear-gradient(135deg,#3b82f6 0%, #06b6d4 100%);
  --card:#fff;
  --border:rgba(2,6,23,.08);
  --max:1200px;
}
*/

/* =========================================
   VARIÁVEIS GERAIS COR LARANJA
========================================= */
:root {
  /* Gradiente principal laranja */
  --grad: linear-gradient(135deg, #ff7a00 0%, #ff3d00 100%);

  /* Segundo gradiente (em vez do azul) */
  --grad-blue: linear-gradient(135deg, #ffb066 0%, #ff7a00 100%);
  --card:#fff;
  --border:rgba(2,6,23,.08);
  --max:1200px;
}


/* =========================================
   BASE
========================================= */
html { scroll-behavior: smooth; }

body {
  margin:0;
  font:16px/1.55 'Inter',system-ui,Segoe UI,Roboto,Arial,sans-serif;
  background:#fff;
  color:#111;
}

a {
  color:inherit;
  text-decoration:none;
  transition:.25s;
}
a:hover { opacity:.85; }

/* =========================================
   LAYOUT GERAL
========================================= */
.wrap {
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

.section {
  padding:72px 0;
  background:#f8fafc;
}

/* =========================================
   TÍTULOS
========================================= */
.h2 {
  font-size:42px;
  margin:0 0 8px;
  text-align:center;
}
.h2 span {
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.h2-sub {
  font-size:1.25em;
  line-height:1.6;
  color:#475569;
  text-align:center;
  margin:0 0 28px;
}

/* =========================================
   HERO
========================================= */
.hero {
  position:relative;
  min-height:78vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#000;
}
.hero-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero .overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.55),rgba(0,0,0,.7));
}
.hero .content {
  position:relative;
  z-index:2;
  color:#fff;
  text-align:left;
  max-width:900px;
  margin:auto;
  padding:24px 16px;
}
.hero h1 {
  font-size:54px;
  line-height:1.05;
  margin:0 0 12px;
}
.hero p {
  color:#e2e8f0;
  margin:0 0 16px;
  font-size:1.1rem;
}
.cta-row {
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}
.hero .btn {
  background:var(--grad);
  padding:12px 18px;
  border-radius:10px;
  color:#fff;
  font-weight:600;
  transition:transform .25s;
}
.hero .btn:hover { transform:scale(1.05); }

/* =========================================
   COUNTDOWN
========================================= */
.countdown {
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:24px;
}
.countdown div {
  background:rgba(255,255,255,.15);
  backdrop-filter:blur(6px);
  padding:14px 24px;
  border-radius:14px;
  color:#fff;
  text-align:center;
  min-width:120px;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
}
.countdown b {
  display:block;
  font-size:1.8rem;
  margin-bottom:4px;
}

/* =========================================
   GRID / CARDS
========================================= */
.grid {
  display:grid;
  gap:16px;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:0 2px 24px rgba(2,6,23,.04);
}
.card--hover { transition:.35s; }
.card--hover:hover {
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 24px rgba(0,0,0,.12);
}

/* =========================================
   BENEFÍCIOS
========================================= */
.benefit {
  position:relative;
  padding-left:48px;
}
.benefit .check {
  position:absolute;
  left:18px;
  top:20px;
  /* color:#7c3aed; */
  color:#ff7a00;
  font-weight:bold;
  font-size:1.2rem;
}
.benefit h3 {
  font-size:1.1rem;
  margin-bottom:8px;
  font-weight:700;
  color:#1e1b4b;
}

/* =========================================
   ORADORES / PARTICIPAÇÕES
========================================= */
.oradores {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:28px;
  justify-items:start;
  justify-content:start;
}
.orador {
  background:#fff;
  border-radius:18px;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  padding:24px 16px;
  transition:all .3s ease;
  width:100%;
  max-width:280px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.orador:hover {
  transform:translateY(-5px);
  box-shadow:0 6px 24px rgba(0,0,0,.12);
}
.orador img.avatar {
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:50%;
  border:3px solid rgba(124,58,237,.2);
}
.orador-name {
  margin-top:10px;
  font-weight:700;
  color:#1e1b4b;
}
.orador-desc {
  margin:8px 0;
  font-size:.95rem;
  color:#c51adb;
  font-weight:500;
  line-height:1.5;
}
.orador-snippet {
  font-weight: 600;
  font-size: 0.95rem;
  margin: 6px 0 14px;
  
  /* Degradê roxo já usado no site */
  /* background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%); */
  background: linear-gradient(90deg, #ff7a00 0%, #ff3d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Botão mini (usar em oradores, etc.) */
.btn-mini {
  display:inline-block;
  margin-top:8px;
  padding:8px 16px;
  font-size:14px;
  border-radius:8px;
  background:var(--grad-blue);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(59,130,246,.3);
  transition:.25s;
}
.btn-mini:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(6,182,212,.4);
}

/* === PARTICIPAÇÕES ESPECIAIS === */
.participacoes {
  background:linear-gradient(180deg,rgba(124,58,237,.05),rgba(168,85,247,.12));
  padding:50px 30px;
  border-radius:18px;
  margin-top:60px;
  box-shadow:0 3px 18px rgba(0,0,0,.06);
}
.participacoes h3 {
  text-align:center;
  font-size:1.5rem;
  font-weight:700;
  margin-bottom:36px;
  background:var(--grad);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.participacoes .orador {
  background:#fff;
  border:2px solid rgba(124,58,237,.15);
  border-radius:16px;
  padding:24px 16px;
  transition:all .3s ease;
}
.participacoes .orador:hover {
  transform:translateY(-4px);
  box-shadow:0 6px 20px rgba(124,58,237,.15);
}
.participacoes .orador .avatar {
  border:3px solid rgba(124,58,237,.25);
}
.participacoes .orador-name {
  color:#1e1b4b;
  font-weight:700;
  font-size:1.1rem;
  margin-top:10px;
}
.participacoes .orador .badge {
  display:none !important;
}

/* =========================================
   PROGRAMA LISTA 
========================================= */
.list {
  list-style:none;
  padding:0;
  margin:0;
}
.list li {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.list .dot {
  width:48px;
  height:48px;
  border-radius:50%;
  /* background:linear-gradient(135deg,#a855f7,#ec4899); */
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  color:#fff;
  font-weight:350;
  display:flex;
  align-items:center;
  justify-content:center;
}
.flag {
  font-weight:700;
  border-radius:8px;
  text-transform:none;
  letter-spacing:.3px;
}
*/

/* =========================================
   FORMULÁRIOS
========================================= */
.form {
  max-width:900px;
  margin:0 auto;
  background:#fff;
  padding:32px;
  border-radius:16px;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  box-sizing:border-box;
}
.form .input,
.form textarea {
  width:100%;
  padding:12px 14px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  font-size:15px;
  resize:none;
  margin-bottom:14px;
  box-sizing:border-box;
}
.form .btn {
  background:var(--grad-blue);
  color:#fff;
  font-weight:600;
  border:none;
  border-radius:10px;
  padding:12px 28px;
  box-shadow:0 4px 16px rgba(59,130,246,.3);
  transition:.25s;
  width:auto;
}
.form .btn:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(6,182,212,.4);
}
.form-row,
.form .grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media (max-width:768px) {
  .form-row,
  .form .grid {
    grid-template-columns:1fr;
  }
}

/* =========================================
   PRICING / BILHETES — VERSÃO PREMIUM REVISADA
========================================= */

.pricing {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ====== CARDS BASE ====== */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;

  box-shadow: 0 8px 32px rgba(124,58,237,.08);
  transition: .35s;

  display: flex;
  flex-direction: column;

  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 14px 36px rgba(124,58,237,.16);
}


/* ====== VIP HIGHLIGHT ====== */
.price-card--highlight {
  background: linear-gradient(160deg, rgba(124,58,237,.12) 0%, rgba(168,85,247,.18) 100%);
  border: 1px solid rgba(124,58,237,.25);
}

.price-card--highlight .flag {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--grad);
  color: #fff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
}



/* =========================================
   PREÇOS — AJUSTES DE DESTAQUE
========================================= */

.price-wrap {
  text-align: center;
  margin: 0 0 16px;
}

/* preço atual — um pouco menor */
.price-wrap .price {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

/* preço antigo — maior, mais claro e destacado */
.price-wrap .price-old {
  margin-top: 6px;
  font-size: 18px;
  color: #b434eb;
  opacity: 0.7;
  text-decoration: line-through;
  font-weight: 600;
}


/* Packs — ajustar linhas */
.price-card .price-wrap .packs-info {
  font-size: 15px;
  font-weight: 400;
  color: #666;
  margin-left: 6px;
}



/* =========================================
   LISTA DE BENEFÍCIOS — BULLETS PREMIUM
========================================= */

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 28px;
}

.price-card ul li {
  margin-bottom: 10px;
  line-height: 1.45;

  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card ul li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 6px;

  /* background: linear-gradient(135deg, #7c3aed, #b45cff); */
  background: linear-gradient(135deg, #ff7a00, #ff3d00);
  border-radius: 50%;

  flex-shrink: 0;
}



/* =========================================
   BOTÕES ALINHADOS EM BAIXO NO CARD
========================================= */
/* A caixa PRINCIPAL já está em flex column — ok */
.price-card {
  display: flex;
  flex-direction: column;
}

/* A LISTAGEM precisa de remover margens extras que empurram o botão */
.price-card ul {
  flex-grow: 1;
  margin: 12px 0 0; /* REMOVE o margin-bottom que causava desalinhamento */
  padding: 0;
}

/* O botão deve ser empurrado para o fundo SEMPRE */
.price-card .btn-mini,
.card-btn {
  margin-top: auto !important;
  align-self: stretch;
}




/* =========================================
   AJUSTES DO PACK FAMÍLIA PARA 424€ (5 pax)
========================================= */

.price-card .price-wrap .price {
  white-space: nowrap;
}

.packs-info {
  font-size: 15px;
  font-weight: 400;
  color: #666;
}



/* =========================================
   ÍCONES — OPÇÃO PREMIUM (SVG)
========================================= */

/* Ajuste geral do ícone no título */
.price-card h3 svg {
  width: 26px;
  height: 26px;
  margin-right: 6px;
  vertical-align: -4px;
}


/* =========================================
   LOGOS / FOOTER
========================================= */
.logos-box {
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 3px 20px rgba(0,0,0,.06);
  margin-bottom:40px;
}
.logos {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:28px;
  justify-items:center;
  align-items:center;
}
.logo img {
  max-width:160px;
  max-height:80px;
  object-fit:contain;
  transition:.3s;
}
.logo img:hover { transform:scale(1.05); }

.footer {
  background:#0b1220;
  color:#cbd5e1;
  font-size:14px;
  padding-top:24px;
}
.footer .bottom {
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:20px;
}
.footer .bottom .row {
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer a { color:#cbd5e1; }
.footer .social {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  transition:.2s;
}
.footer .social:hover { transform:translateY(-2px); }

/* FOOTER – colunas verticais no mobile */
@media (max-width:768px) {
  .footer .footer-cols {
    display:grid;
    grid-template-columns:1fr !important;
    text-align:center !important;
    gap:32px !important;
  }
  .footer .footer-cols > * {
    width:100% !important;
    justify-self:center !important;
  }
  .footer img {
    max-width:160px;
    height:auto;
  }
  .footer .social {
    margin:0 auto;
  }
  .footer .footer-cols div img {
    display:block;
    margin:0 auto;
  }
}

/* =========================================
   TESTEMUNHOS
========================================= */
.t-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:24px;
  justify-content:start;
  align-items:start;
}
.t-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 3px 16px rgba(0,0,0,0.08);
  transition:transform .3s ease, box-shadow .3s ease;
  width:100%;
  max-width:340px;
  height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
}
.t-card:hover {
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}
.t-card img,
.t-card video {
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:16px;
  display:block;
  background:#000;
}
@media (max-width:1024px) {
  .t-grid {
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:20px;
  }
  .t-card { height:220px; }
}
@media (max-width:768px) {
  .t-grid {
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:16px;
  }
  .t-card { height:200px; }
}

/* =========================================
   BLOCO DE DATA / LOCAL (HERO)
========================================= */
.hero-info,
.hero .event-meta {
  position:absolute;
  top:28px;
  left:28px;
  z-index:5;
  color:#fff;
  font-family:'Inter',system-ui,sans-serif;
  font-size:1.45rem;
  font-weight:700;
  line-height:1.5;
  text-shadow:0 2px 6px rgba(0,0,0,.45);
}
.hero-info .line,
.hero .event-meta .line {
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 6px 0;
}
.hero-info .line .ico,
.hero .event-meta .line .ico {
  display:inline-block;
  width:1.35rem;
  height:1.35rem;
  flex:0 0 1.35rem;
  color:#fff;
}
.hero-info .line.location .ico,
.hero .event-meta .line.location .ico {
  color:#06b6d4;
}
.hero-info .sub,
.hero .event-meta .sub {
  padding-left:1.9rem;
  font-size:1.15rem;
  font-weight:600;
  opacity:.95;
  margin-top:2px;
}
@media (max-width:768px) {
  .hero-info,
  .hero .event-meta {
    top:16px;
    left:16px;
    font-size:1.15rem;
  }
  .hero-info .line .ico,
  .hero .event-meta .line .ico {
    width:1.1rem;
    height:1.1rem;
  }
  .hero-info .sub,
  .hero .event-meta .sub {
    padding-left:1.6rem;
    font-size:1rem;
  }
}

/* =========================================
   BLOCO DE DATA / LOCAL (evento-info dentro do hero)
========================================= */
.evento-info {
  margin-bottom:28px;
  color:#fff;
  font-family:'Inter',system-ui,sans-serif;
  font-size:1.4rem;
  font-weight:600;
  line-height:1.5;
  text-shadow:0 2px 6px rgba(0,0,0,0.4);
}
.evento-info .row {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}
.evento-info .ico svg {
  width:22px;
  height:22px;
  color:#fff;
}
.evento-info .row:nth-child(2) .ico svg {
  color:#06b6d4;
}
.evento-info .txt {
  font-size:1.25rem;
  font-weight:600;
}
.evento-info .row.no-ico {
  padding-left:32px;
  margin-top:2px;
}
.evento-info .row.no-ico .txt {
  font-size:1.15rem;
  font-weight:500;
  opacity:.95;
}
@media (max-width:768px) {
  .evento-info {
    font-size:1.1rem;
    margin-bottom:18px;
  }
  .evento-info .txt { font-size:1rem; }
  .evento-info .row.no-ico { padding-left:26px; }
}

/* =========================================
   SWIPER (Edições)
========================================= */
.swiper {
  width:100%;
  padding:8px 0 32px;
  overflow:visible;
}
.swiper-wrapper {
  display:flex;
  align-items:stretch;
}
.swiper-slide {
  width:auto;
  height:auto !important;
}
.swiper-slide img {
  display:block;
  margin:0 auto;
}

/* =========================================
   RESPONSIVO GERAL
========================================= */
@media (max-width:960px) {
  .hero .content { text-align:center; }
  .hero h1 { font-size:32px; line-height:1.2; }
  .hero p { font-size:1rem; }
  .cta-row { justify-content:center; }
  .countdown div {
    min-width:100px;
    padding:12px 18px;
  }
  .form { padding:22px; }
}

/* Forçar cor dos ícones do HERO */
.hero .evento-info .ico svg {
    fill: #fff !important;
}

/* Pin azul */
.hero .evento-info .row:nth-child(2) .ico svg {
    fill: #06b6d4 !important;
}

/* === Layout original dos Oradores (fixo e bonito) === */

.grid.oradores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* mantém sempre centrado */
    gap: 36px; /* espaço perfeito entre cards */
}

/* Largura fixa de cada card */
.oradores .orador {
    width: 280px;          /* como estava originalmente */
    max-width: 280px;
    flex: 0 0 auto;
    box-sizing: border-box;
}

/* Countdown mobile fix */
@media (max-width: 768px) {
  .countdown {
    justify-content: center !important;
    text-align: center;
  }
  .countdown > div {
    margin-left: auto;
    margin-right: auto;
  }
}

.modal-ok {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-ok.open {
  display: flex;
}

.modal-ok-box {
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 340px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.25);
}

.modal-ok-box h3 {
  margin: 0 0 10px;
  /* color: #7c3aed; */
  color:#ff7a00;
}

.modal-ok-box button {
  margin-top: 16px;
  /* color: #7c3aed; */
  color:#ff7a00;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* ============================================================
   CSS EXTRA — MAPA 2026 (NOVOS BLOCOS)
   Seguro e sem conflitos com estilos existentes
=============================================================== */

/* -------------------------------
   Cartões pequenos (Para quem é)
-------------------------------- */
.card small {
  display:block;
  font-size:.9rem;
  color:#475569;
}

/* -------------------------------
   Bloco “O MaPa é mais do que um evento”
-------------------------------- */
.mapa-mov-card p {
  margin-bottom: 12px;
}

/* -------------------------------
   Temas 2026 – grid mais equilibrado
-------------------------------- */
.temas-grid .card {
  text-align:center;
  font-weight:500;
}

/* -------------------------------
   Números (grid de 4)
-------------------------------- */
.numeros-grid .card div:first-child {
  font-size:48px;
  font-weight:800;
  /* color: #7c3aed; */
  color:#ff7a00;
}

/* -------------------------------
   CTA Final — botão grande
-------------------------------- */
.cta-final-btn {
  background: var(--grad);
  color:#fff !important;
  padding:18px 40px;
  font-size:22px;
  font-weight:700;
  border-radius:14px;
  display:inline-block;
  transition:.25s;
}
.cta-final-btn:hover {
  transform:scale(1.04);
}

/* -------------------------------
   Secção “MaPa para além do evento”
-------------------------------- */
.mapa-alem .card h3 {
  font-size:1.25rem;
  margin-bottom:8px;
  font-weight:700;
  color:#1e1b4b;
}

/* Hover consistente */
.mapa-alem .card:hover {
  transform: translateY(-4px);
}

/* -------------------------------
   Bilhetes — melhoria suave nos cards
-------------------------------- */
.price-card h3 {
  font-size:1.25rem;
  margin-bottom:8px;
}

.price-card .price {
  margin-bottom:12px;
}

.price-card ul li {
  padding-left:4px;
}

/* Botão mini dentro dos bilhetes */
.price-card .btn-mini {
  margin-top:14px;
}

/* -------------------------------
   Responsividade adicional
-------------------------------- */
@media (max-width:768px) {

  /* “Para quem é” */
  .publicos-grid {
    grid-template-columns:1fr !important;
  }

  /* Temas */
  .temas-grid {
    grid-template-columns:1fr 1fr !important;
  }

  /* Números */
  .numeros-grid {
    grid-template-columns:1fr 1fr !important;
  }

  /* CTA final */
  .cta-final-btn {
    width:100%;
    box-sizing:border-box;
  }
}
/* ============================================================
   MAPA — BLOCO "É MAIS DO QUE UM EVENTO" (OPÇÃO C)
=============================================================== */

.mapa-mov-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

/* alinhar títulos à esquerda só neste bloco */
.mapa-mov-left .h2,
.mapa-mov-left .h2-sub {
  text-align: left;
}

.mapa-mov-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111827;
  margin-top: 10px;
}

.mapa-mov-body p {
  margin: 0 0 12px;
}

/* Lado direito: imagem bonita */
.mapa-mov-image-card {
  background: #fff;
  border-radius: 20px;
  padding: 12px 12px 16px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.18);
  max-width: 460px;
  margin: 0 auto;
}

.mapa-mov-image-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

.mapa-mov-image-card .caption {
  margin-top: 10px;
  font-size: .9rem;
  color: #4b5563;
}

/* Responsivo */
@media (max-width: 960px) {
  .mapa-mov-grid {
    grid-template-columns: 1fr;
  }
  .mapa-mov-right {
    order: -1; /* imagem acima no mobile, se preferires troca para 0 */
  }
  .mapa-mov-left .h2,
  .mapa-mov-left .h2-sub {
    text-align: center;
  }
}

/* Moldura branca */
.mapa-mov-image-card {
  background: #fff;
  padding: 16px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Área do slider */
.sobre-img {
  position: relative;
  width: 100%;
  height: 260px; /* Ajusta aqui */
  border-radius: 16px;
  overflow: hidden;
}

/* Slides */
.sobre-img .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  border-radius: 16px;
}

.sobre-img .slide.active {
  opacity: 1;
}

/* Legenda */
.caption {
  text-align: center;
  font-size: .9rem;
  color: #555;
}


/* ============================================================
   TÓPICOS “São dois dias de”
=============================================================== */

.mapa-mov-topicos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.mapa-mov-topicos .topico {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: .3s;
}

.mapa-mov-topicos .topico:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.mapa-mov-topicos .icon-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 10px rgba(124,58,237,0.25);
}

.mapa-mov-topicos span {
  font-size: 1.02rem;
  font-weight: 600;
  color: #1e1b4b;
}

/* ============================================================
   ANIMAÇÕES SUAVES
=============================================================== */

/* fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUpAnim .9s ease forwards;
}

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* fade-left para a imagem */
.fade-left {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeLeftAnim .9s ease forwards;
}

@keyframes fadeLeftAnim {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* fade-stagger → para os tópicos */
.fade-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeStaggerAnim .7s ease forwards;
}

.fade-stagger > *:nth-child(1) { animation-delay: .15s; }
.fade-stagger > *:nth-child(2) { animation-delay: .25s; }
.fade-stagger > *:nth-child(3) { animation-delay: .35s; }
.fade-stagger > *:nth-child(4) { animation-delay: .45s; }
.fade-stagger > *:nth-child(5) { animation-delay: .55s; }
.fade-stagger > *:nth-child(6) { animation-delay: .65s; }
.fade-stagger > *:nth-child(7) { animation-delay: .75s; }

@keyframes fadeStaggerAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   EFEITO LIGHT SWEEP NA IMAGEM DO BLOCO "SOBRE"
=============================================================== */

.sobre-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* hover – ligeiro brilho e realce */
.sobre-img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 38px rgba(0,0,0,0.18);
}

/* Light Sweep */
.sobre-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-25deg);
  transition: 0.6s ease;
  pointer-events: none;
}

.sobre-img:hover::before {
  left: 140%;
}


/* ================================================
   AJUSTES PEDIDOS – MAPA MOVIMENTO
================================================ */

/* 1. Título e subtítulo centrados */
.mapa-mov-title,
.mapa-mov-subtitle {
  text-align: center !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* 2. Imagem alinhada ao topo do texto */
.mapa-mov-right {
  align-self: start !important;
}

/* 3. Tópicos centrados abaixo do texto e da imagem */
.mapa-mov-topicos-centered {
  margin-top: 46px;
  display: grid;
  justify-items: center;
}

.mapa-mov-topicos-centered .topico {
  width: 100%;
  max-width: 420px; /* cartões mais elegantes e equilibrados */
}

/* Em desktop: 2 colunas centralizadas */
@media (min-width: 860px) {
  .mapa-mov-topicos-centered {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 46px;
    justify-items: center;
  }
}

/* Em grandes ecrãs: 3 colunas */
@media (min-width: 1300px) {
  .mapa-mov-topicos-centered {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================================
   POP-IN ANIMATION para os tópicos (rebentamento suave)
=============================================================== */

.pop-in > * {
  opacity: 0;
  transform: scale(0.6);
  animation: popInAnim .55s cubic-bezier(.34,1.56,.64,1) forwards;
}

.pop-in > *:nth-child(1) { animation-delay: .10s; }
.pop-in > *:nth-child(2) { animation-delay: .18s; }
.pop-in > *:nth-child(3) { animation-delay: .26s; }
.pop-in > *:nth-child(4) { animation-delay: .34s; }
.pop-in > *:nth-child(5) { animation-delay: .42s; }
.pop-in > *:nth-child(6) { animation-delay: .50s; }
.pop-in > *:nth-child(7) { animation-delay: .58s; }

@keyframes popInAnim {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  70% {
    opacity: 1;
    transform: scale(1.08); /* pequeno 'rebentamento' */
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================================
   TEMAS 2026 — GRID COM IMAGEM + ANIMAÇÕES
=============================================================== */

.temas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.tema-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,0.08);
  transition: .35s ease;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* Hover (desktop only) */
@media (hover:hover) {
  .tema-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
}

.tema-img {
  height: 160px;
  overflow: hidden;
  background: #f3f3f3;
}

.tema-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.tema-card:hover img {
  transform: scale(1.12);
}

.tema-title {
  padding: 14px 18px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #1e1b4b;
  text-align: center;
}



/* ============================================================
   ANIMAÇÃO DE ENTRADA — POP-IN
=============================================================== */

.pop-in-img > * {
  opacity: 0;
  transform: scale(.75);
  animation: popImage .55s cubic-bezier(.34,1.56,.64,1) forwards;
}

.pop-in-img > *:nth-child(1) { animation-delay: .05s; }
.pop-in-img > *:nth-child(2) { animation-delay: .12s; }
.pop-in-img > *:nth-child(3) { animation-delay: .19s; }
.pop-in-img > *:nth-child(4) { animation-delay: .26s; }
.pop-in-img > *:nth-child(5) { animation-delay: .33s; }
.pop-in-img > *:nth-child(6) { animation-delay: .40s; }
.pop-in-img > *:nth-child(7) { animation-delay: .47s; }
.pop-in-img > *:nth-child(8) { animation-delay: .54s; }
.pop-in-img > *:nth-child(9) { animation-delay: .61s; }
.pop-in-img > *:nth-child(10) { animation-delay: .68s; }

@keyframes popImage {
  0% { opacity: 0; transform: scale(.75); }
  70% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}



/* ============================================================
   AJUSTE DO BLOCO “Para quem é o MaPa?”
=============================================================== */

.mapa-publicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 10px;
}

.mapa-publicos-grid .card {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}


/* ============================================================
   ANIMAÇÃO GLOBAL DO BLOCO FAMÍLIAS
=============================================================== */

.animate-pop {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: popIn 0.9s ease-out forwards;
}

@keyframes popIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.94); }
  60% { opacity: 1; transform: translateY(0) scale(1.02); }
  100% { transform: scale(1); }
}



/* ============================================================
   MOBILE
=============================================================== */

@media (max-width: 768px) {

  .tema-img {
    height: 140px;
  }

  .familias-card {
    padding: 28px 24px;
  }

  .familias-title {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* ============================================================
   BLOCO FAMÍLIAS — HERO FINAL, SEM CONFLITOS
=============================================================== */

.familias-hero {
  position: relative;
  padding: 90px 0;
  margin-top: 80px; /* espaçamento */
  background: #000;
  color: #fff;
  overflow: hidden;
  min-height: 560px;
  background-image: url("/edicoes/2026/teens.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.familias-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.75) 40%,
      rgba(0,0,0,0.85) 100%
  );
  backdrop-filter: blur(3px);
}

.familias-content {
  position: relative;
  z-index: 3; /* garante que nunca fica atrás do overlay */
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.familias-card {
  position: relative;
  z-index: 4;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 42px 48px;
  max-width: 880px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  color: #1e1e1e;
}

.familias-card p {
  font-size: 1.12rem;
  line-height: 1.68;
  margin-bottom: 16px;
  color: #222;
}

.familias-title {
  font-size: 2.2rem;
  color: #1e1b4b;
  margin-bottom: 18px;
}

.familias-btn {
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--grad-blue);
  color: #fff !important;
  display: inline-block;
}

/* ============================================================
   ANIMAÇÃO ESTÁVEL (SEM conflitos)
=============================================================== */

.animate-pop {
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  animation: popInFamilies 0.9s ease-out forwards;
  will-change: opacity, transform;
  z-index: 4;
}

@keyframes popInFamilies {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
  }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .familias-card {
    padding: 28px 24px;
  }
  .familias-title {
    font-size: 1.8rem;
    text-align: center;
  }
}

/* ============================================================
   O MaPa em números — estilo limpo + gradiente
=============================================================== */

.mapa-numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* força 1 linha com 4 colunas */
  gap: 40px;
  margin: 50px auto 40px;
  max-width: 1100px;
  text-align: center;
}

.mapa-numero .num {
  font-size: 52px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.mapa-numero p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
  .mapa-numeros-grid {
    gap: 26px;
  }
  .mapa-numero .num {
    font-size: 44px;
  }
}

/* Fundo do bloco — diferente do anterior */
.mapa-alem-bg {
  background: #eef1f8;
  padding: 90px 0 110px;
}

/* GRID dos cards */
.mapa-alem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 34px;
  max-width: 1150px;
  padding: 0 24px;
  margin: 50px auto 0;
}

/* CARD principal */
.mapa-alem-card {
  position: relative;
  height: 410px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,0.16);
  transition: transform .35s ease, box-shadow .35s ease, background-size .45s ease;
}

/* Overlay escuro para legibilidade */
.mapa-alem-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}

/* Conteúdo */
.mapa-alem-card .content {
  position: relative;
  z-index: 2;
}

/* Títulos */
.mapa-alem-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

/* Texto */
.mapa-alem-card p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 18px;
  color: #e4e6eb;
  max-width: 92%;
}

/* Botões */
.mapa-alem-card .btn-mini {
  background: var(--grad-blue);
  padding: 10px 22px;
  border-radius: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .mapa-alem-card {
    height: 340px;
    padding: 24px;
  }
  .mapa-alem-card h3 {
    font-size: 1.35rem;
  }
}
/* ============================================================
   EFEITO LIGHT SWEEP — brilho diagonal ao passar o rato
=============================================================== */

.mapa-alem-card {
  position: relative;
  overflow: hidden;
}

/* Luz diagonal */
.mapa-alem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
      120deg,
      rgba(255,255,255,0) 0%,
      rgba(255,255,255,0.26) 50%,
      rgba(255,255,255,0) 100%
  );

  /* Começa fora do cartão */
  transform: translateX(-120%);
  transition: transform .8s ease;
}

/* Movimento ao hover */
.mapa-alem-card:hover::before {
  transform: translateX(120%);
}

/* ============================================================
   PATROCINADOR — BLOCO SEM FORMULÁRIO
=============================================================== */

.patrocinio-bloco {
  background: #f8fafc;
  padding: 90px 0 120px;
  text-align: center;
}

.patro-text {
  max-width: 780px;
  margin: 0 auto 28px;
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.7;
}

.patro-cta {
  margin-top: 40px;
}

.patro-btn {
  display: inline-block;     /* deixa de ser full width */
  margin: 32px auto 0;       /* centra horizontalmente */
  padding: 14px 32px;
  font-size: 1.1rem;
  border-radius: 12px;
  background: var(--grad-blue);
  box-shadow: 0 6px 24px rgba(6,182,212,.35);
  transition: transform .25s, box-shadow .25s;
  width: auto;               /* garante que NÃO ocupa tudo */
  text-align: center;
}

.patro-btn-wrapper {
  text-align: center;
}


.patro-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(6,182,212,0.45);
}

/* Container do botão final */
.cta-final {
  text-align: center;
  margin-top: 40px;
}

/* Botão com o mesmo estilo do header */
.cta-final-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  /* background: linear-gradient(135deg, #ff00cc 0%, #7c3aed 100%); */
  background: linear-gradient(135deg, #ff7a00 0%, #ff3d00 100%);
  color: #fff;
  text-decoration: none;
  /* box-shadow: 0 6px 24px rgba(124, 58, 237, 0.3); */
  box-shadow: 0 6px 24px rgba(255, 122, 0, 0.3);
  transition: 0.25s ease;
}

/* Hover igual ao botão principal */
.cta-final-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 34px rgba(124, 58, 237, 0.45);
  opacity: 0.95;
}

/* ============================================================
   PROGRAMA
=============================================================== */
/* ============================================================
   PROGRAMA DO EVENTO — LAYOUT BASE
=============================================================== */

.section--programa-white {
  background: #f7f8fc;
  padding: 80px 0;
}

.programa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

/* ============================================================
   CARTÕES
=============================================================== */

.programa-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
  transition: transform .35s ease, box-shadow .35s ease;
}

.programa-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}

/* ============================================================
   ANIMAÇÕES ENTRE COLUNAS
=============================================================== */

.programa-card:nth-child(1) {
  transform: translate(-40px, 40px);
  animation: fadeLeft 0.9s ease forwards;
}

.programa-card:nth-child(2) {
  transform: translate(40px, 40px);
  animation: fadeRight 0.9s ease forwards;
}

@keyframes fadeLeft {
  0% { opacity:0; transform:translate(-40px,40px); }
  60% { opacity:1; transform:translate(0,0); }
  100% { opacity:1; }
}

@keyframes fadeRight {
  0% { opacity:0; transform:translate(40px,40px); }
  60% { opacity:1; transform:translate(0,0); }
  100% { opacity:1; }
}

@keyframes fadeUp {
  0% { opacity:0; transform:translateY(40px); }
  60% { opacity:1; transform:translateY(0); }
  100% { opacity:1; }
}

/* MOBILE — ambos sobem */
@media (max-width:768px) {
  .programa-card:nth-child(1),
  .programa-card:nth-child(2) {
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
  }
}

/* ============================================================
   TÍTULOS DO DIA (COM GRADIENTE)
=============================================================== */

.programa-dia-titulo {
  padding: 18px 26px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* GRADIENTE DIA 1: Roxo mais claro */
.programa-dia-titulo.dia1 {
  /* background: linear-gradient(90deg, #8b5ff7 0%, #7c3aed 100%); */
  background: linear-gradient(90deg, #ff7a00 0%, #ff3d00 100%);
}

/* GRADIENTE DIA 2: Roxo → Rosa */
.programa-dia-titulo.dia2 {
  /* background: linear-gradient(90deg, #d946ef 0%, #9333ea 100%); */
  background: linear-gradient(90deg, #ffb066 0%, #ff7a00 100%);
}

/* HOVER: brilho suave */
.programa-card:hover .programa-dia-titulo.dia1 {
  /*background: linear-gradient(90deg, #9c6aff 0%, #8a46ff 100%);*/
  background: linear-gradient(90deg, #ff8a1a 0%, #ff5a00 100%);
}

.programa-card:hover .programa-dia-titulo.dia2 {
  /*background: linear-gradient(90deg, #e253ff 0%, #a23dff 100%);*/
  background: linear-gradient(90deg, #ffb066 0%, #ff7a00 100%);
}

/* ============================================================
   CONTEÚDO
=============================================================== */

.programa-conteudo {
  padding: 26px 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1e293b;
}

.programa-conteudo h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1e1b4b;
}

.programa-conteudo p {
  margin-bottom: 18px;
  color: #334155;
}

/* ============================================================
   EDICOES
=============================================================== */
* {
    box-sizing: border-box;
}
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
  .programa-grid {
    grid-template-columns: 1fr !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .programa-card {
    border-radius: 16px;
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .mapa-numeros-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    padding: 0 10px !important;
  }

  .mapa-numero .num {
    font-size: 38px !important;
  }
}

.programa-conteudo > div,
.programa-conteudo > p,
.programa-conteudo > h4,
.programa-conteudo > li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.programa-conteudo .dot {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =======================================
   FLAGS NOS CARDS (corrigir corte no topo)
========================================== */

.price-card {
  position: relative;      /* necessário para posicionar a flag */
  overflow: visible;       /* permite que a flag saia fora do topo */
}

.price-card .flag {
  position: absolute;
  top: -14px;              /* sobe a tag visualmente */
  left: 20px;              /* alinhamento horizontal */
  padding: 6px 14px;
  /* background: linear-gradient(90deg, #d948ef, #7c3aed); */
  background: linear-gradient(90deg, #ff7a00, #ff3d00);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  z-index: 3;
}


