/* =============================================
   SUMMIT ABA — Premium Enhancement Styles
   Clean Light + Organic Shapes + Animated Geometry
   ============================================= */

/* === VARIAVEIS E RESET === */
:root {
  /* Paleta principal */
  --azul-oceano: #266BB6;
  --laranja-vibrante: #E88329;
  --azul-noturno: #152A45;
  --verde-agua: #2AAEA1;
  --verde-limao: #A9C83C;
  --branco: #FFFFFF;

  /* Neutros derivados */
  --cinza-claro: #F6F8FB;
  --cinza-medio: #DEE5EC;
  --texto-escuro: #152A45;
  --texto-medio: #425466;
  --texto-claro: #708090;

  /* Premium accents */
  --azul-oceano-soft: rgba(38, 107, 182, 0.08);
  --verde-agua-soft: rgba(42, 174, 161, 0.08);
  --laranja-soft: rgba(232, 131, 41, 0.08);
  --azul-oceano-glow: rgba(38, 107, 182, 0.35);
  --verde-agua-glow: rgba(42, 174, 161, 0.3);
  --laranja-glow: rgba(232, 131, 41, 0.4);

  /* Tipografia */
  --font-titulo: 'Poppins', sans-serif;
  --font-corpo: 'Open Sans', sans-serif;

  /* Espacamento premium */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Bordas e sombras premium */
  --radius-card: 20px;
  --radius-pill: 50px;
  --shadow-card: 0 4px 32px rgba(21, 42, 69, 0.06);
  --shadow-card-hover: 0 12px 48px rgba(21, 42, 69, 0.12);
  --shadow-premium: 0 20px 60px rgba(21, 42, 69, 0.08);

  /* Glassmorphism light */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-blur: 20px;

  /* Transicao premium */
  --transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-corpo);
  color: var(--texto-escuro);
  background: var(--branco);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}


/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--azul-oceano), var(--verde-agua), var(--verde-limao));
  transition: width 0.1s linear;
}


/* === GEOMETRIC TEXTURE OVERLAY === */
.geo-texture {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 1px 1px, var(--azul-oceano) 0.5px, transparent 0),
    radial-gradient(circle at 1px 1px, var(--verde-agua) 0.3px, transparent 0);
  background-size: 48px 48px, 32px 32px;
  background-position: 0 0, 16px 16px;
  animation: geo-drift 20s linear infinite;
}

@keyframes geo-drift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-8px, -12px); }
  50% { transform: translate(-16px, 0); }
  75% { transform: translate(-8px, 12px); }
  100% { transform: translate(0, 0); }
}


/* === ORGANIC FLOATING SHAPES === */
.organic-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.organic-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: float-shape 18s ease-in-out infinite;
}

.organic-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--azul-oceano);
  top: -180px;
  right: -120px;
  animation-duration: 22s;
}

.organic-shape--2 {
  width: 400px;
  height: 400px;
  background: var(--verde-agua);
  bottom: -100px;
  left: -150px;
  animation-duration: 18s;
  animation-delay: -4s;
}

.organic-shape--3 {
  width: 300px;
  height: 300px;
  background: var(--verde-limao);
  top: 40%;
  right: -100px;
  opacity: 0.08;
  animation-duration: 25s;
  animation-delay: -8s;
}

.organic-shape--4 {
  width: 350px;
  height: 350px;
  background: var(--laranja-vibrante);
  top: 20%;
  left: -140px;
  opacity: 0.06;
  animation-duration: 20s;
  animation-delay: -12s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}


/* === FLOATING GEOMETRIC SHAPES (animated SVG-like) === */
.geo-float {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.geo-float--circle {
  width: 20px;
  height: 20px;
  border: 2px solid var(--azul-oceano);
  border-radius: 50%;
  opacity: 0.15;
  animation: geo-float-up 12s ease-in-out infinite;
}

.geo-float--triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--verde-agua);
  opacity: 0.1;
  animation: geo-float-up 15s ease-in-out infinite;
}

.geo-float--square {
  width: 14px;
  height: 14px;
  border: 2px solid var(--laranja-vibrante);
  opacity: 0.12;
  animation: geo-float-up 18s ease-in-out infinite;
  transform: rotate(45deg);
}

.geo-float--dot {
  width: 6px;
  height: 6px;
  background: var(--verde-limao);
  border-radius: 50%;
  opacity: 0.2;
  animation: geo-float-up 10s ease-in-out infinite;
}

.geo-float--cross {
  width: 16px;
  height: 16px;
  position: relative;
  opacity: 0.1;
  animation: geo-float-up 14s ease-in-out infinite;
}

.geo-float--cross::before,
.geo-float--cross::after {
  content: '';
  position: absolute;
  background: var(--azul-oceano);
}

.geo-float--cross::before {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
}

.geo-float--cross::after {
  width: 16px;
  height: 2px;
  left: 0;
  top: 7px;
}

@keyframes geo-float-up {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  25% { transform: translateY(-20px) rotate(90deg); opacity: 0.08; }
  50% { transform: translateY(-10px) rotate(180deg); opacity: 0.15; }
  75% { transform: translateY(-30px) rotate(270deg); opacity: 0.06; }
}


/* === SCROLLBAR PREMIUM === */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cinza-claro);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--azul-oceano), var(--verde-agua));
  border-radius: 3px;
}


/* === CONTAINER === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  position: relative;
  z-index: 2;
}


/* === TIPOGRAFIA GLOBAL === */
h1, h2, h3, h4 {
  font-family: var(--font-titulo);
  line-height: 1.12;
}

.section-title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--texto-escuro);
  margin: 16px 0 48px;
  letter-spacing: -0.03em;
}

.section-title--white {
  color: var(--branco);
}


/* === LABELS / BADGES === */
.label {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}

.label--orange {
  background: rgba(232, 131, 41, 0.1);
  color: var(--laranja-vibrante);
  border: 1px solid rgba(232, 131, 41, 0.15);
}

.label--blue {
  background: rgba(38, 107, 182, 0.08);
  color: var(--azul-oceano);
  border: 1px solid rgba(38, 107, 182, 0.12);
}

.label--teal {
  background: rgba(42, 174, 161, 0.1);
  color: var(--verde-agua);
  border: 1px solid rgba(42, 174, 161, 0.15);
}

.label--white {
  background: rgba(255,255,255,0.12);
  color: var(--branco);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
}

.badge {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
}

.badge--outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}

.badge--gray {
  background: var(--cinza-claro);
  color: var(--texto-claro);
}


/* === BOTOES PREMIUM === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 16px 36px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn--lg {
  font-size: 1rem;
  padding: 20px 48px;
}

.btn--sm {
  font-size: 0.78rem;
  padding: 12px 24px;
}

.btn--full {
  width: 100%;
}

.btn--orange {
  background: linear-gradient(135deg, var(--laranja-vibrante), #d07420);
  color: var(--branco);
  border-color: transparent;
  box-shadow: 0 6px 24px var(--laranja-glow);
}

.btn--orange:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--laranja-glow);
}

.btn--white-orange {
  background: var(--branco);
  color: var(--laranja-vibrante);
  border-color: var(--branco);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.btn--white-orange:hover {
  background: #fff7f0;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.btn--white-teal {
  background: var(--branco);
  color: var(--verde-agua);
  border-color: var(--branco);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.btn--white-teal:hover {
  background: #f0fffe;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.btn--outline-blue {
  background: transparent;
  color: var(--azul-oceano);
  border-color: var(--azul-oceano);
}

.btn--outline-blue:hover {
  background: var(--azul-oceano);
  color: var(--branco);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px var(--azul-oceano-glow);
}


/* === WAVE TRANSITIONS === */
.wave {
  position: relative;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
}

.wave--top {
  margin-bottom: -1px;
}

.wave--bottom {
  margin-top: -1px;
}


/* === CINEMATIC SCROLL REVEALS === */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Stagger delays */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* Legacy class support */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }


/* === SECTION DIVIDERS === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--azul-oceano-soft), var(--verde-agua-soft), transparent);
  max-width: 600px;
  margin: 0 auto;
}


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 24px rgba(21, 42, 69, 0.08);
  border-bottom: 1px solid rgba(38, 107, 182, 0.08);
}

.navbar.is-visible {
  transform: translateY(0);
}

.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}


/* =============================================
   SECAO 1: HERO — Fundo branco + blobs orgânicos
   ============================================= */
.hero {
  position: relative;
  background: var(--branco);
  padding: 80px 0 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/padrao-bg.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
}

/* Removido: gradiente sutil substituido pelas brand abstract shapes */

.hero__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  max-width: 100%;
}

/* Edition Badge — Logo "1ª Edição em Recife" */
.hero__edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  background: var(--branco);
  border: 2px solid var(--laranja-vibrante);
  border-radius: 16px;
  padding: 10px 20px 10px 14px;
  box-shadow: 0 4px 20px rgba(232, 131, 41, 0.15);
}

.hero__edition-icon {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.hero__edition-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero__edition-num {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--laranja-vibrante);
  letter-spacing: -0.02em;
}

.hero__edition-city {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--azul-oceano);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--texto-escuro);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}

/* Accent gradient on title */
.hero__title-accent {
  background: linear-gradient(135deg, var(--laranja-vibrante), var(--verde-agua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-corpo);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--texto-medio);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.75;
}

/* Info pills — new white-bg style */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--branco);
  border: 1.5px solid rgba(38, 107, 182, 0.14);
  color: var(--azul-noturno);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 2px 12px rgba(21, 42, 69, 0.06);
  transition: var(--transition);
}

.hero__pill svg {
  color: var(--azul-oceano);
  flex-shrink: 0;
}

.hero__pill:hover {
  border-color: var(--azul-oceano);
  box-shadow: 0 4px 20px rgba(38, 107, 182, 0.12);
  transform: translateY(-2px);
}

/* Legacy pills support */
.hero__info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(38, 107, 182, 0.06);
  border: 1px solid rgba(38, 107, 182, 0.14);
  color: var(--azul-noturno);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero__info-pill:hover {
  background: rgba(38, 107, 182, 0.1);
  border-color: rgba(38, 107, 182, 0.25);
}

.hero__price {
  font-family: var(--font-corpo);
  color: var(--texto-medio);
  font-size: 1rem;
  margin-bottom: 28px;
}

.hero__price strong {
  color: var(--texto-escuro);
  font-weight: 700;
  font-size: 1.12rem;
}

/* CTA row */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 0;
}

.hero__cta {
  margin-bottom: 0;
}

.hero__security {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-corpo);
  font-size: 0.82rem;
  color: var(--texto-claro);
}

/* Right side visual decoration */
.hero__visual {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero__visual-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 60%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(38, 107, 182, 0.10),
    rgba(42, 174, 161, 0.06),
    transparent 70%
  );
  filter: blur(12px);
  animation: blob-morph 16s ease-in-out infinite;
}

/* Venue card inside hero (desktop) */
.hero__venue-card {
  position: relative;
  z-index: 2;
  width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(38, 107, 182, 0.18),
    0 4px 16px rgba(0,0,0,0.12);
  border: 4px solid #ffffff;
  animation: float-icon 7s ease-in-out infinite;
}

.hero__venue-img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.hero__venue-label {
  display: block;
  background: var(--azul-noturno);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 16px;
  text-align: center;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-18px) rotate(1deg); }
}

/* Hero logo full */
.hero__logo-wrap {
  margin-bottom: 20px;
}

.hero__logo-full {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero__visual-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__visual-ring--outer {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(38, 107, 182, 0.08);
  animation: ring-pulse 5s ease-in-out infinite;
}

.hero__visual-ring--inner {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(42, 174, 161, 0.1);
  animation: ring-pulse 5s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.05); opacity: 0.5; }
}

/* Floating mini shapes inside hero */
.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hf {
  position: absolute;
}

.hf--circle { border-radius: 50%; }

.hf--1 {
  width: 18px; height: 18px;
  background: var(--azul-oceano);
  border-radius: 50%;
  top: 18%; right: 12%;
  opacity: 0.18;
  animation: hf-float-1 14s ease-in-out infinite;
}

.hf--2 {
  width: 28px; height: 28px;
  border: 2px solid var(--verde-agua);
  border-radius: 50%;
  top: 65%; right: 22%;
  opacity: 0.22;
  animation: hf-float-2 18s ease-in-out infinite;
}

.hf--3 {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid var(--laranja-vibrante);
  top: 35%; right: 38%;
  opacity: 0.14;
  animation: hf-float-3 22s ease-in-out infinite;
}

.hf--4 {
  width: 8px; height: 8px;
  background: #2AAEA1;
  border-radius: 50%;
  top: 78%; right: 8%;
  opacity: 0.28;
  animation: hf-float-4 12s ease-in-out infinite;
}

.hf--5 {
  width: 36px; height: 36px;
  border: 1.5px solid var(--azul-oceano);
  border-radius: 50%;
  top: 82%; right: 35%;
  opacity: 0.1;
  animation: hf-float-2 26s ease-in-out infinite;
  animation-delay: -8s;
}

.hf--6 {
  width: 12px; height: 12px;
  background: var(--laranja-vibrante);
  border-radius: 50%;
  top: 25%; right: 45%;
  opacity: 0.16;
  animation: hf-float-1 16s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes hf-float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(12px, -18px) rotate(120deg); }
  66%       { transform: translate(-8px, 10px) rotate(240deg); }
}

@keyframes hf-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-14px, -12px) scale(1.1); }
  70%       { transform: translate(10px, 8px) scale(0.9); }
}

@keyframes hf-float-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%       { transform: translate(8px, -20px) rotate(180deg); }
}

@keyframes hf-float-4 {
  0%, 100% { transform: translate(0, 0); opacity: 0.28; }
  50%       { transform: translate(-10px, -14px); opacity: 0.12; }
}

/* Hero bottom wave */
.hero__wave {
  position: relative;
  line-height: 0;
  margin-top: 40px;
}

.hero__wave svg {
  display: block;
  width: 100%;
}

/* Subtle grain on hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.018;
  z-index: 3;
  background-size: 200px;
  animation: grain-shift 0.5s steps(4) infinite;
}

@keyframes grain-shift {
  0%  { background-position: 0 0; }
  25% { background-position: -80px 40px; }
  50% { background-position: 40px -60px; }
  75% { background-position: -40px 80px; }
}

/* =============================================
   BLOB ORGANICOS — Sistema de formas fluidas
   ============================================= */
.blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(55px);
  opacity: 0.20;
  pointer-events: none;
  z-index: 0;
  animation: blob-morph 14s ease-in-out infinite;
}

/* Hero corner blobs */
.blob--tl {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 40% 40%, var(--azul-oceano), var(--verde-agua) 70%);
  top: -180px;
  left: -150px;
  animation-duration: 16s;
}

.blob--tr {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 40%, var(--laranja-vibrante), #f0a050 70%);
  top: -80px;
  right: -110px;
  animation-duration: 20s;
  animation-delay: -5s;
  opacity: 0.14;
}

.blob--br {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, var(--verde-limao), var(--verde-agua) 70%);
  bottom: 60px;
  right: -150px;
  animation-duration: 18s;
  animation-delay: -9s;
  opacity: 0.12;
}

.blob--bl {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 40% 40%, var(--verde-agua), var(--azul-oceano) 70%);
  bottom: 40px;
  left: -110px;
  animation-duration: 22s;
  animation-delay: -3s;
  opacity: 0.14;
}

/* Section blobs — CSS custom props --bc and --bs */
.blob--section-right {
  width: var(--bs, 300px);
  height: var(--bs, 300px);
  background: radial-gradient(circle, var(--bc, var(--azul-oceano)), transparent 70%);
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  filter: blur(80px);
  animation-duration: 24s;
  animation-delay: -7s;
  opacity: 0.10;
}

.blob--section-left {
  width: var(--bs, 300px);
  height: var(--bs, 300px);
  background: radial-gradient(circle, var(--bc, var(--verde-agua)), transparent 70%);
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  filter: blur(80px);
  animation-duration: 22s;
  animation-delay: -4s;
  opacity: 0.10;
}

/* CTA section decorative blobs */
.blob--cta-tl {
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.14);
  top: -260px;
  left: -180px;
  filter: blur(90px);
  animation-duration: 20s;
  border-radius: 50%;
}

.blob--cta-br {
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.08);
  bottom: -210px;
  right: -160px;
  filter: blur(90px);
  animation-duration: 26s;
  animation-delay: -6s;
  border-radius: 50%;
}

@keyframes blob-morph {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0) scale(1); }
  20%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: translate(10px,-14px) scale(1.03); }
  40%  { border-radius: 50% 60% 30% 40% / 70% 30% 50% 40%; transform: translate(-12px,8px) scale(0.97); }
  60%  { border-radius: 40% 60% 60% 30% / 30% 70% 40% 60%; transform: translate(8px,12px) scale(1.04); }
  80%  { border-radius: 70% 30% 40% 60% / 50% 40% 60% 30%; transform: translate(-6px,-10px) scale(0.98); }
  100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translate(0,0) scale(1); }
}


/* =============================================
   BRAND ABSTRACT IDENTITY SHAPES
   Formas da identidade visual — planas, coloridas, sem blur
   mix-blend-mode: multiply para sobreposicao realista
   (duas laranjas sobrepostas criam o efeito coral/vermelho)
   ============================================= */

.brand-abs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.bs {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: multiply;
  animation: bs-drift 24s ease-in-out infinite;
}

@keyframes bs-drift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(18px, -22px); }
  66%       { transform: translate(-14px, 16px); }
}

/* ---- Hero: 4 formas grandes ---- */

/* H1: Laranja principal — blob grande, inferior esquerdo */
.bs--h1 {
  width: 620px;
  height: 700px;
  background: var(--laranja-vibrante);
  opacity: 0.90;
  bottom: -280px;
  left: -180px;
  border-radius: 44% 56% 64% 36% / 40% 34% 66% 60%;
  animation-duration: 28s;
}

/* H2: Laranja secundário — ribbon curvo, sobreposicao com H1 cria coral/vermelho via multiply */
.bs--h2 {
  width: 480px;
  height: 740px;
  background: var(--laranja-vibrante);
  opacity: 0.82;
  bottom: -200px;
  left: 50px;
  border-radius: 28% 72% 40% 60% / 62% 36% 64% 38%;
  animation-duration: 36s;
  animation-delay: -9s;
}

/* H3: Verde-água — oval lado direito */
.bs--h3 {
  width: 480px;
  height: 400px;
  background: var(--verde-agua);
  opacity: 0.88;
  top: 28%;
  right: -150px;
  border-radius: 62% 38% 48% 52% / 40% 60% 40% 60%;
  animation-duration: 22s;
  animation-delay: -15s;
}

/* H4: Verde-limão — acento inferior direito */
.bs--h4 {
  width: 360px;
  height: 440px;
  background: var(--verde-limao);
  opacity: 0.82;
  bottom: -130px;
  right: -80px;
  border-radius: 54% 46% 30% 70% / 58% 42% 62% 38%;
  animation-duration: 20s;
  animation-delay: -7s;
}

/* ---- Acentos de seção — cantos (menores, mais sutis) ---- */

.bs--sec-tl {
  width: 320px;
  height: 300px;
  background: var(--laranja-vibrante);
  opacity: 0.65;
  top: -110px;
  left: -80px;
  border-radius: 34% 66% 52% 48% / 60% 34% 66% 40%;
  animation-duration: 30s;
}

.bs--sec-tr {
  width: 340px;
  height: 320px;
  background: var(--azul-oceano);
  opacity: 0.55;
  top: -100px;
  right: -90px;
  border-radius: 60% 40% 34% 66% / 36% 64% 34% 66%;
  animation-duration: 26s;
  animation-delay: -6s;
}

.bs--sec-bl {
  width: 280px;
  height: 340px;
  background: var(--verde-agua);
  opacity: 0.60;
  bottom: -100px;
  left: -70px;
  border-radius: 54% 46% 66% 34% / 32% 68% 34% 66%;
  animation-duration: 24s;
  animation-delay: -10s;
}

.bs--sec-br {
  width: 300px;
  height: 280px;
  background: var(--verde-limao);
  opacity: 0.55;
  bottom: -90px;
  right: -70px;
  border-radius: 42% 58% 36% 64% / 64% 36% 62% 38%;
  animation-duration: 22s;
  animation-delay: -13s;
}

/* Mobile: formas menores */
@media (max-width: 768px) {
  .bs--h1 { width: 360px; height: 400px; bottom: -160px; left: -130px; opacity: 0.22; }
  .bs--h2 { width: 280px; height: 420px; bottom: -130px; left: 20px; opacity: 0.18; }
  .bs--h3 { width: 280px; height: 240px; right: -100px; }
  .bs--h4 { width: 220px; height: 260px; bottom: -80px; right: -60px; opacity: 0.18; }
  .bs--sec-tl, .bs--sec-tr, .bs--sec-bl, .bs--sec-br { width: 200px; height: 200px; }
}


/* =============================================
   SECAO 2: NUMEROS
   ============================================= */
.numbers {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--branco);
  border: 1.5px solid rgba(38, 107, 182, 0.12);
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 4px 24px rgba(38, 107, 182, 0.07);
  transition: var(--transition);
}

.numbers__item:hover {
  box-shadow: 0 8px 36px rgba(38, 107, 182, 0.13);
  transform: translateY(-3px);
}

.numbers__value {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  background: linear-gradient(135deg, var(--azul-oceano), var(--verde-agua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
}

.numbers__label {
  font-family: var(--font-corpo);
  color: var(--texto-medio);
  font-size: 0.95rem;
  max-width: 180px;
  text-align: center;
}

.numbers__divider {
  display: none;
}

.numbers__caption {
  text-align: center;
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  color: var(--texto-claro);
  max-width: 500px;
  margin: 0 auto;
}


/* =============================================
   SECAO 3: DORES
   ============================================= */
.pain {
  background: var(--cinza-claro);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Organic shape in section */
.pain::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--verde-agua);
  filter: blur(120px);
  opacity: 0.06;
  top: -100px;
  right: -150px;
  pointer-events: none;
}

.pain .section-title {
  max-width: 700px;
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.pain__item {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(232, 131, 41, 0.12);
  border-left: 4px solid var(--laranja-vibrante);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.pain__item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(232, 131, 41, 0.25);
}

.pain__item p {
  font-family: var(--font-corpo);
  color: var(--texto-escuro);
  font-size: 0.97rem;
  line-height: 1.6;
}

.pain__transition {
  font-family: var(--font-corpo);
  font-style: italic;
  color: var(--verde-agua);
  font-size: 1.08rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =============================================
   SECAO 4: PARA QUEM E
   ============================================= */
.audience {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.audience::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--azul-oceano);
  filter: blur(120px);
  opacity: 0.05;
  bottom: -80px;
  left: -120px;
  pointer-events: none;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.audience__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1.5px solid rgba(42, 174, 161, 0.15);
  border-radius: var(--radius-card);
  padding: 24px 28px;
  transition: var(--transition);
}

.audience__card:hover {
  border-color: var(--verde-agua);
  box-shadow: 0 8px 32px var(--verde-agua-glow);
  transform: translateY(-4px);
}

.audience__card-icon {
  color: var(--verde-agua);
  flex-shrink: 0;
  margin-top: 2px;
}

.audience__card p {
  font-family: var(--font-corpo);
  color: var(--texto-escuro);
  font-size: 0.97rem;
}

.audience__note {
  text-align: center;
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--texto-claro);
  font-style: italic;
}


/* =============================================
   SECAO 5: CONTEUDO PROGRAMATICO
   ============================================= */
.content-prog {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--branco) 0%, var(--cinza-claro) 100%);
  position: relative;
  overflow: hidden;
}

.content-prog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.content-prog__card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(38, 107, 182, 0.1);
  border-radius: var(--radius-card);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.content-prog__card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
  border-color: rgba(38, 107, 182, 0.2);
}

.content-prog__number {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 5rem;
  background: linear-gradient(180deg, rgba(38, 107, 182, 0.08), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.content-prog__body {
  position: relative;
  z-index: 1;
}

.content-prog__title {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--azul-noturno);
  margin-bottom: 6px;
}

.content-prog__speaker {
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  color: var(--verde-agua);
  font-weight: 600;
  margin-bottom: 16px;
}

.content-prog__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-prog__bullets li {
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--texto-medio);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.content-prog__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-oceano), var(--verde-agua));
}


/* =============================================
   SECAO 6: CTA INTERMEDIARIO
   ============================================= */
.cta-mid {
  background: linear-gradient(135deg, var(--laranja-vibrante), #c56820);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Organic shape overlay */
.cta-mid::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(60px);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-mid__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.cta-mid__title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--branco);
  letter-spacing: -0.02em;
}

.cta-mid__sub {
  font-family: var(--font-corpo);
  color: rgba(255,255,255,0.88);
  margin-top: 12px;
  font-size: 0.97rem;
}

.cta-mid__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.cta-mid__price {
  font-family: var(--font-corpo);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}


/* =============================================
   SECAO 7: PALESTRANTES
   ============================================= */
.speakers {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.speakers::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--verde-limao);
  filter: blur(140px);
  opacity: 0.06;
  top: 50%;
  right: -150px;
  pointer-events: none;
}

.speakers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.speaker-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(38, 107, 182, 0.08);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.speaker-card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-6px);
  border-color: rgba(38, 107, 182, 0.15);
}

.speaker-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.speaker-card:hover .speaker-card__avatar {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.speaker-card__avatar span {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--branco);
}

.speaker-card__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-card__name {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--texto-escuro);
  margin-bottom: 4px;
}

.speaker-card__role {
  font-family: var(--font-corpo);
  font-size: 0.82rem;
  color: var(--texto-claro);
  margin-bottom: 16px;
}

.speaker-card__divider {
  border: none;
  border-top: 1px solid rgba(38, 107, 182, 0.08);
  margin: 16px 0;
}

.speaker-card__topic {
  font-family: var(--font-corpo);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--texto-medio);
  margin-bottom: 16px;
  text-align: center;
}


/* =============================================
   SECAO 8: CRONOGRAMA
   ============================================= */
.schedule {
  padding: var(--section-padding);
  background: var(--cinza-claro);
  position: relative;
}

.schedule__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.schedule__day {
  background: var(--branco);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.schedule__day:hover {
  box-shadow: var(--shadow-premium);
}

.schedule__day-header {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule__day-header--navy {
  background: linear-gradient(135deg, var(--azul-noturno), #1e3a5f);
}

.schedule__day-header--teal {
  background: linear-gradient(135deg, var(--verde-agua), #1e9a8e);
}

.schedule__day-label {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.schedule__day-date {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--branco);
}

.schedule__items {
  padding: 12px 0;
}

.schedule__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 32px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.schedule__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.schedule__item:hover {
  background: var(--cinza-claro);
}

.schedule__item--morning {
  border-left-color: var(--verde-agua);
}

.schedule__item--afternoon {
  border-left-color: var(--laranja-vibrante);
}

.schedule__time {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--azul-oceano);
  min-width: 36px;
  flex-shrink: 0;
}

.schedule__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.schedule__info strong {
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--texto-escuro);
}

.schedule__info em {
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  color: var(--texto-claro);
}

.schedule__items--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.schedule__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 40px 28px;
}

.schedule__placeholder-icon {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

.schedule__placeholder p {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--texto-medio);
}

.schedule__placeholder small {
  font-family: var(--font-corpo);
  font-size: 0.85rem;
  color: var(--texto-claro);
}


/* =============================================
   SECAO 9: DEPOIMENTOS
   ============================================= */
.testimonials {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.testimonials__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/padrao-bg.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.025;
  pointer-events: none;
}

/* Estilos de depoimentos substituídos por .testi-* acima */


/* =============================================
   SECAO 9: DEPOIMENTOS — Colunas Animadas
   ============================================= */
.testimonials {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.testimonials__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/padrao-bg.png');
  background-size: 280px;
  background-repeat: repeat;
  opacity: 0.02;
  pointer-events: none;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials__header .section-title {
  margin-bottom: 8px;
}

.testimonials__subtitle {
  font-family: var(--font-corpo);
  font-size: 1rem;
  color: var(--texto-claro);
  margin-bottom: 0;
}

/* Container das colunas — largura full com padding lateral */
.testi-columns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  max-height: 680px;
  overflow: hidden;
  /* Fade mask top + bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  padding: 0 24px;
}

/* Cada coluna */
.testi-col {
  flex: 1;
  min-width: 0;
  max-width: 360px;
  overflow: hidden;
}

.testi-col--md {
  display: none;
}

.testi-col--lg {
  display: none;
}

/* Track que se repete */
.testi-col__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

/* Animacoes de velocidades diferentes */
.testi-col--1 .testi-col__track {
  animation: testi-scroll-up 18s linear infinite;
}

.testi-col--2 .testi-col__track {
  animation: testi-scroll-up 22s linear infinite;
}

.testi-col--3 .testi-col__track {
  animation: testi-scroll-up 15s linear infinite;
}

@keyframes testi-scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Pausar no hover */
.testi-col:hover .testi-col__track {
  animation-play-state: paused;
}

/* Card individual */
.testi-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(42, 174, 161, 0.1);
  border-radius: var(--radius-card);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  flex-shrink: 0;
}

.testi-card:hover {
  border-color: rgba(42, 174, 161, 0.22);
  box-shadow: 0 8px 32px rgba(42, 174, 161, 0.1);
  transform: scale(1.01);
}

.testi-card__text {
  font-family: var(--font-corpo);
  font-size: 0.92rem;
  color: var(--texto-medio);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testi-card__text::before {
  content: '\201C';
  font-family: var(--font-titulo);
  font-size: 1.4rem;
  color: var(--verde-agua);
  font-style: normal;
  margin-right: 2px;
  vertical-align: -4px;
  opacity: 0.6;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(42, 174, 161, 0.2);
}

.testi-card__author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-card__author strong {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--texto-escuro);
}

.testi-card__author span {
  font-family: var(--font-corpo);
  font-size: 0.78rem;
  color: var(--texto-claro);
}

/* Responsive */
@media (min-width: 768px) {
  .testi-col--md {
    display: flex;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .testi-col--lg {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .testi-columns {
    max-height: 560px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .testi-col__track {
    animation: none;
  }
}


/* =============================================
   SECAO 6: EMBAIXADOR DO EVENTO
   ============================================= */
.ambassador {
  padding: var(--section-padding);
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.ambassador__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.ambassador__photo-wrap {
  position: relative;
  flex-shrink: 0;
}

.ambassador__photo-blob {
  position: absolute;
  inset: -20px;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  background: linear-gradient(135deg, rgba(38, 107, 182, 0.10) 0%, rgba(42, 174, 161, 0.10) 100%);
  z-index: 0;
}

.ambassador__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(38, 107, 182, 0.16), 0 4px 16px rgba(0,0,0,0.08);
  border: 4px solid var(--branco);
}

.ambassador__name {
  font-family: var(--font-titulo);
  font-size: 2rem;
  font-weight: 700;
  color: var(--azul-noturno);
  margin: 0 0 4px;
  line-height: 1.2;
}

.ambassador__role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--laranja-vibrante);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}

.ambassador__quote {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--azul-oceano);
  border-left: 4px solid var(--laranja-vibrante);
  padding: 12px 20px;
  margin: 0 0 24px;
  background: rgba(38, 107, 182, 0.04);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}

.ambassador__bio {
  font-size: 0.97rem;
  color: var(--cinza-medio);
  line-height: 1.75;
  margin: 0 0 16px;
}

.ambassador__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.ambassador__tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--azul-oceano);
  background: rgba(38, 107, 182, 0.08);
  border: 1px solid rgba(38, 107, 182, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .ambassador__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ambassador__photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .ambassador__photo {
    height: 320px;
  }
  .ambassador__name {
    font-size: 1.6rem;
  }
}


/* =============================================
   SECAO 10: BONUS
   ============================================= */
.bonus {
  padding: var(--section-padding);
  background: var(--cinza-claro);
  position: relative;
  overflow: hidden;
}

.bonus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.bonus__card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(42, 174, 161, 0.1);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.bonus__card:hover {
  box-shadow: var(--shadow-premium);
  transform: translateY(-4px);
  border-color: rgba(42, 174, 161, 0.2);
}

.bonus__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(42, 174, 161, 0.1), rgba(38, 107, 182, 0.06));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde-agua);
  flex-shrink: 0;
  transition: var(--transition);
}

.bonus__card:hover .bonus__icon {
  transform: scale(1.08);
  box-shadow: 0 4px 20px var(--verde-agua-glow);
}

.bonus__content {
  flex: 1;
}

.bonus__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.bonus__header h3 {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--texto-escuro);
}

.bonus__value {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde-agua);
  background: rgba(42,174,161,0.08);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  border: 1px solid rgba(42,174,161,0.12);
}

.bonus__content p {
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--texto-medio);
  line-height: 1.65;
}


/* =============================================
   SECAO 11: PRECOS / INGRESSOS
   ============================================= */
.pricing {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--azul-noturno) 0%, #1a3556 50%, var(--azul-oceano) 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--verde-agua);
  filter: blur(150px);
  opacity: 0.08;
  bottom: -200px;
  right: -200px;
  pointer-events: none;
}

.pricing__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/padrao-bg.png');
  background-size: 250px;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.25);
}

.pricing-card--featured {
  border-color: var(--laranja-vibrante);
  border-width: 3px;
  background: var(--branco);
  box-shadow: 0 16px 64px rgba(232, 131, 41, 0.25);
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 72px rgba(232, 131, 41, 0.35);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--laranja-vibrante), #d07420);
  color: var(--branco);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--laranja-glow);
}

.pricing-card__header {
  margin-bottom: 10px;
}

.pricing-card__day {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--azul-noturno);
}

.pricing-card__date {
  font-family: var(--font-corpo);
  font-size: 0.82rem;
  color: var(--texto-claro);
  display: block;
  margin-top: 2px;
}

.pricing-card__body {
  flex: 1;
  margin: 16px 0 28px;
}

.pricing-card__price {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--azul-noturno);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--texto-medio);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__features li {
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--texto-medio);
  padding-left: 18px;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--verde-agua), var(--azul-oceano));
}


/* =============================================
   SECAO 12: URGENCIA / COUNTDOWN
   ============================================= */
.urgency {
  padding: var(--section-padding);
  background: var(--cinza-claro);
  position: relative;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--branco);
  border: 1px solid rgba(38, 107, 182, 0.08);
  border-radius: var(--radius-card);
  padding: 24px 32px;
  min-width: 100px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.countdown__block:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.countdown__value {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--azul-noturno), var(--azul-oceano));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 2ch;
  text-align: center;
}

.countdown__label {
  font-family: var(--font-corpo);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--texto-claro);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.countdown__sep {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--azul-oceano), var(--verde-agua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  align-self: center;
  margin-bottom: 28px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-corpo);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--texto-medio);
}

.trust-bar__item svg {
  color: var(--azul-oceano);
  flex-shrink: 0;
}

.trust-bar__sep {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, transparent, var(--cinza-medio), transparent);
  display: none;
}


/* =============================================
   SPEAKER CARD — Fotos reais dos palestrantes
   ============================================= */
.speaker-card__photo-wrap {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
}

.speaker-card__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(38, 107, 182, 0.15);
  box-shadow: 0 6px 24px rgba(21, 42, 69, 0.12);
  transition: var(--transition);
  display: block;
}

.speaker-card:hover .speaker-card__photo {
  transform: scale(1.05);
  border-color: var(--azul-oceano);
  box-shadow: 0 8px 32px var(--azul-oceano-glow);
}

.speaker-card__photo-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(38, 107, 182, 0.14);
  pointer-events: none;
  transition: var(--transition);
}

.speaker-card:hover .speaker-card__photo-ring {
  border-color: rgba(38, 107, 182, 0.32);
  transform: scale(1.05);
}

.speaker-card__time {
  display: inline-block;
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--branco);
  background: linear-gradient(135deg, var(--azul-oceano), var(--verde-agua));
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
}


/* =============================================
   SECAO 13: LOCAL
   ============================================= */
.venue {
  padding: var(--section-padding);
  background: var(--branco);
}

.venue__card {
  border: 1px solid rgba(38, 107, 182, 0.1);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.venue__card:hover {
  box-shadow: var(--shadow-premium);
}

.venue__name {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--azul-noturno);
  margin-bottom: 10px;
}

.venue__address {
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  color: var(--texto-medio);
  margin-bottom: 10px;
}

.venue__desc {
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--texto-claro);
  margin-bottom: 28px;
}

.venue__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue__map-placeholder {
  background: linear-gradient(135deg, var(--cinza-claro), rgba(38, 107, 182, 0.04));
  border: 1px solid rgba(38, 107, 182, 0.08);
  border-radius: var(--radius-card);
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--azul-oceano);
  padding: 24px;
}

.venue__map-placeholder span {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--texto-escuro);
}

.venue__map-placeholder small {
  font-family: var(--font-corpo);
  font-size: 0.82rem;
  color: var(--texto-claro);
}

/* Foto real do venue */
.venue__photo {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  min-height: 200px;
  max-height: 280px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.venue__card:hover .venue__photo {
  box-shadow: var(--shadow-premium);
}


/* =============================================
   SECAO 14: CONTATO
   ============================================= */
.contact {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--verde-agua), #1e9a8e);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(80px);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.contact__inner {
  text-align: center;
}

.contact__title {
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--branco);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.contact__sub {
  font-family: var(--font-corpo);
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact__email {
  margin-top: 24px;
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contact__email a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact__email a:hover {
  color: var(--branco);
}


/* =============================================
   SECAO 15: RODAPE
   ============================================= */
.footer {
  background: linear-gradient(135deg, var(--azul-noturno), #0d1e33);
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

.footer__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/padrao-bg.png');
  background-size: 220px;
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer__logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(10);
  margin-bottom: 14px;
}

.footer__tagline {
  font-family: var(--font-corpo);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--branco);
  transform: translateX(4px);
}

.footer__city {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.footer__city-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  opacity: 0.55;
}

.footer__city-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(21, 42, 69, 0.3) 0%, rgba(21, 42, 69, 0.6) 100%);
}

.footer__city-label {
  font-family: var(--font-titulo);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-corpo);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}


/* =============================================
   IMAGEM FLUTUANTE DO LOCAL (DESKTOP)
   ============================================= */
.venue-float {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 998;
  width: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 3px solid var(--branco);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.venue-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.venue-float__img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.venue-float__label {
  display: block;
  background: var(--azul-noturno);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-corpo);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  text-align: center;
}

@media (min-width: 1024px) {
  .venue-float {
    display: block;
  }
}

/* =============================================
   BOTAO FLUTUANTE WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  background: linear-gradient(135deg, var(--verde-agua), #1e9a8e);
  color: var(--branco);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px var(--verde-agua-glow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 48px var(--verde-agua-glow);
}


/* =============================================
   RESPONSIVIDADE — TABLET (768px+)
   ============================================= */
@media (min-width: 768px) {

  .numbers__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .numbers__item {
    padding: 40px 32px;
  }

  .pain__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .audience__grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-prog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-mid__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cta-mid__text {
    flex: 1;
  }

  .cta-mid__action {
    flex-shrink: 0;
    align-items: flex-end;
  }

  .speakers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .schedule__grid {
    grid-template-columns: 1fr 1fr;
  }


  .pricing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .trust-bar__sep {
    display: block;
  }

  .venue__card {
    flex-direction: row;
  }

  .venue__info {
    flex: 1;
  }

  .venue__visual {
    flex: 0 0 280px;
  }

  .venue__map-placeholder {
    min-height: 240px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__links {
    align-items: flex-end;
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .bonus__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* =============================================
   SPEAKER CARD — Editorial full-bleed photo
   ============================================= */
.speaker-card__photo-cover {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
}

.speaker-card__photo-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.speaker-card:hover .speaker-card__photo-cover-img {
  transform: scale(1.06);
}

.speaker-card__photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 20%, rgba(21, 42, 69, 0.75));
  padding: 32px 20px 14px;
  display: flex;
  justify-content: flex-end;
}

.speaker-card__body {
  padding: 20px 24px 28px;
}

/* Remove padding antigo do card quando tem cover photo */
.speaker-card:has(.speaker-card__photo-cover) {
  padding: 0;
  overflow: hidden;
}

/* =============================================
   CONTENT PROG — Speaker row com mini foto
   ============================================= */
.content-prog__speaker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.content-prog__speaker-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(38, 107, 182, 0.25);
  box-shadow: 0 2px 10px rgba(38, 107, 182, 0.12);
  flex-shrink: 0;
}

.content-prog__speaker-row .content-prog__speaker {
  margin-bottom: 0;
}

/* =============================================
   VENUE — Banner foto aérea de Recife
   ============================================= */
.venue__banner {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 280px;
  margin-bottom: 32px;
}

.venue__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.8s ease;
}

.venue__banner:hover .venue__banner-img {
  transform: scale(1.03);
}

.venue__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(21, 42, 69, 0.65)
  );
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.venue__banner-label {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--branco);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* =============================================
   PAIN SECTION — Split layout com visual
   ============================================= */
.pain__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.pain__right {
  display: none;
}

.pain__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px;
}

.pain__visual-blob {
  position: absolute;
  inset: 0;
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  background: radial-gradient(circle, rgba(42, 174, 161, 0.08), rgba(38, 107, 182, 0.06), transparent 70%);
  filter: blur(20px);
  animation: blob-morph 18s ease-in-out infinite;
  pointer-events: none;
}

.pain__visual-icon-wrap {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 107, 182, 0.06);
  border-radius: 50%;
  border: 1.5px solid rgba(38, 107, 182, 0.1);
  animation: ring-pulse 4s ease-in-out infinite;
}

.pain__visual-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(38, 107, 182, 0.2));
  animation: float-icon 7s ease-in-out infinite;
}

.pain__visual-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 260px;
}

.pain__stat {
  background: var(--branco);
  border: 1px solid rgba(38, 107, 182, 0.1);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.pain__stat-value {
  display: block;
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--azul-oceano), var(--verde-agua));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.pain__stat-label {
  display: block;
  font-family: var(--font-corpo);
  font-size: 0.82rem;
  color: var(--texto-claro);
  line-height: 1.4;
}

/* =============================================
   AUDIENCE — Ícones coloridos por categoria
   ============================================= */
.audience__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.audience__card:hover .audience__icon {
  transform: scale(1.08);
}

.audience__icon--blue {
  background: rgba(38, 107, 182, 0.1);
  color: var(--azul-oceano);
  border: 1px solid rgba(38, 107, 182, 0.15);
}

.audience__icon--teal {
  background: rgba(42, 174, 161, 0.1);
  color: var(--verde-agua);
  border: 1px solid rgba(42, 174, 161, 0.15);
}

.audience__icon--lime {
  background: rgba(169, 200, 60, 0.1);
  color: #7A9A20;
  border: 1px solid rgba(169, 200, 60, 0.2);
}

.audience__icon--orange {
  background: rgba(232, 131, 41, 0.1);
  color: var(--laranja-vibrante);
  border: 1px solid rgba(232, 131, 41, 0.15);
}


/* =============================================
   RESPONSIVIDADE — DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {

  /* Hero 2-colunas no desktop */
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 100px;
  }

  .hero__visual {
    display: flex;
  }

  .hero__content {
    max-width: 100%;
  }

  .speakers__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pricing__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  .content-prog__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .pain__layout {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .pain__right {
    display: block;
  }
}


/* =============================================
   RESPONSIVIDADE — LARGE (1280px+)
   ============================================= */
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }

  .hero__title {
    font-size: 3.8rem;
  }
}


/* =============================================
   MOBILE PEQUENO (480px e abaixo)
   ============================================= */
@media (max-width: 480px) {
  :root {
    --section-padding: 72px 0;
  }

  .hero {
    padding-top: 60px;
  }

  .hero__pills,
  .hero__info-pills {
    flex-direction: column;
  }

  .blob--tl { width: 280px; height: 280px; top: -120px; left: -100px; }
  .blob--tr { width: 200px; height: 200px; top: -60px; right: -70px; }
  .blob--br { display: none; }
  .blob--bl { display: none; }
  .hf--3, .hf--5, .hf--6 { display: none; }

  .btn--lg {
    padding: 16px 28px;
    font-size: 0.9rem;
  }

  .countdown {
    gap: 4px;
  }

  .countdown__block {
    padding: 12px 10px;
    min-width: 60px;
    border-radius: 10px;
  }

  .countdown__value {
    font-size: 1.6rem;
  }

  .countdown__label {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }

  .countdown__sep {
    font-size: 1.4rem;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  /* Hide organic shapes on mobile for performance */
  .organic-shape {
    display: none;
  }

  .geo-texture {
    opacity: 0.015;
  }
}


/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .organic-shape,
  .geo-float,
  .geo-texture {
    animation: none;
  }

  .reveal,
  .animate-on-scroll {
    transition-duration: 0.01s;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero::after {
    animation: none;
  }
}
