.elementor-19827 .elementor-element.elementor-element-89a4feb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-0a5aa50 *//* =============================================
   SuaTV Landing Page - Estilos Principais
   Paleta: #001F28 (fundo), #FB6900 (destaque), #FFFFFF
   ============================================= */

/* --- Reset e Variáveis --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-dark: #001F28;
  --color-dark-mid: #002D38;
  --color-dark-light: #003D4F;
  --color-orange: #FB6900;
  --color-orange-hover: #e05d00;
  --color-white: #FFFFFF;
  --color-white-80: rgba(255,255,255,0.8);
  --color-white-60: rgba(255,255,255,0.6);
  --color-white-20: rgba(255,255,255,0.2);
  --color-white-10: rgba(255,255,255,0.1);
  --color-white-05: rgba(255,255,255,0.05);
  --color-orange-20: rgba(251,105,0,0.2);
  --color-orange-10: rgba(251,105,0,0.1);
  --font-primary: 'Inter', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-glow-orange: 0 0 40px rgba(251,105,0,0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- Tipografia --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p {
  color: var(--color-white-80);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* --- Utilitários --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-orange-20);
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.text-orange { color: var(--color-orange); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.text-muted { color: var(--color-white-60); }

/* --- Glassmorphism Base --- */
.glass-card {
  background: var(--color-white-05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--color-white-10);
  border-color: var(--color-white-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* --- Botões --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(251,105,0,0.4);
}

.btn-primary:hover {
  background: var(--color-orange-hover);
  box-shadow: 0 8px 32px rgba(251,105,0,0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white-20);
}

.btn-outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: var(--color-orange-10);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  border-radius: var(--border-radius-lg);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0, 31, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-white-10);
  padding: 12px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 800;
}

.navbar-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.navbar-logo .logo-text {
  color: var(--color-white);
}

.navbar-logo .logo-text span {
  color: var(--color-orange);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-nav a {
  color: var(--color-white-80);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition);
}

.navbar-nav a:hover {
  color: var(--color-white);
}

.navbar-nav a:hover::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu nav a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-white-80);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-white-10);
}

/* =============================================
   SEÇÃO 1: HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(251,105,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0,61,79,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #001F28 0%, #002D38 50%, #001F28 100%);
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-orange-10);
  border: 1px solid rgba(251,105,0,0.4);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  width: fit-content;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--color-orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero-title .highlight {
  color: var(--color-orange);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-white-80);
  line-height: 1.8;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.82rem;
  color: var(--color-white-60);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrapper{
  position: relative;
  overflow: visible;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-white-10);
  box-shadow: var(--shadow-card);
}

.hero-image{
  width: 100%;
  display: block;
  border-radius: var(--border-radius-xl);
}

.hero-card-main {
  background: var(--color-white-05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
}

.hero-card-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-card-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--color-orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
}

.hero-card-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--color-white-05);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-white-10);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--color-orange-10);
  border: 1px solid rgba(251,105,0,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white-80);
}

.hero-card-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-orange-20);
  border: 1px solid var(--color-orange);
  border-radius: var(--border-radius-md);
  padding: 12px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-orange);

  width: fit-content;
  margin: -40 auto;
}

.floating-badge {
  position: absolute;
  background: var(--color-dark-mid);
  border: 1px solid var(--color-white-20);
  border-radius: var(--border-radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.floating-badge-1 {
  top: 30px;
  right: 30px;
  z-index: 20;
}

.floating-badge-2 {
  bottom: 30px;
  left: 30px;
  z-index: 20;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* =============================================
   SEÇÃO 2: METODOLOGIA ALTA
   ============================================= */
#metodologia {
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}
.metodologia-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(251,105,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.metodologia-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.metodologia-header p {
  font-size: 1.15rem;
  margin-top: 20px;
}

.alta-acronym {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.alta-letter-card {
  position: relative;
  background: var(--color-white-05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-lg);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
  cursor: default;
}

.alta-letter-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.alta-letter-card:hover {
  border-color: rgba(251,105,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(251,105,0,0.15);
}

.alta-letter-card:hover::before {
  transform: scaleX(1);
}

.alta-letter {
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
}

.alta-icon {
  width: 64px;
  height: 64px;
  background: var(--color-orange-10);
  border: 1px solid rgba(251,105,0,0.3);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.alta-word {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.alta-letter-display {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-orange);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.alta-desc {
  font-size: 0.9rem;
  color: var(--color-white-60);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.metodologia-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.metodologia-pillar {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.metodologia-pillar:hover {
  border-color: rgba(251,105,0,0.3);
  box-shadow: var(--shadow-card);
}

.pillar-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--color-orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-desc {
  font-size: 0.95rem;
  color: var(--color-white-60);
  line-height: 1.7;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pillar-tag {
  background: var(--color-orange-10);
  border: 1px solid rgba(251,105,0,0.3);
  color: var(--color-orange);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* =============================================
   SEÇÃO 3: ESPECIALISTAS SUATV
   ============================================= */
#especialistas {
  padding: 120px 40;
  position: relative;
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-mid) 50%, var(--color-dark) 100%);
  overflow: hidden;
}

.especialistas-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(251,105,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(251,105,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.especialistas-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.especialistas-header p {
  font-size: 1.15rem;
  margin-top: 20px;
}

.especialistas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}}

.expert-card {
  background: var(--color-white-05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.expert-card:hover {
  transform: translateY(-8px);
  border-color: rgba(251,105,0,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 30px rgba(251,105,0,0.1);
}

.expert-card-top {
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.expert-card-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(0deg, var(--color-dark-mid) 0%, transparent 100%);
}

.expert-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-orange);
}

.expert-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 25%;
    display:block;
}

.expert-card-body {
  padding: 24px;
}

.expert-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.expert-role {
  font-size: 0.85rem;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.expert-bio {
  font-size: 0.88rem;
  color: var(--color-white-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.expert-tag {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  color: var(--color-white-80);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.especialistas-cta-banner {
  background: linear-gradient(135deg, var(--color-orange) 0%, #ff8c2a 100%);
  border-radius: var(--border-radius-xl);
  padding: 48px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.especialistas-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.especialistas-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.cta-banner-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-banner-text h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
  color: white;
}

.cta-banner-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.cta-banner-actions {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: white;
  color: var(--color-orange);
  font-weight: 700;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* =============================================
   SEÇÃO 4: O ENCONTRO
   ============================================= */
#encontro {
  padding: 40px 0 120px;
  position: relative;
  overflow: hidden;
}

.encontro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(251,105,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.encontro-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px;
}

.encontro-header p {
  font-size: 1.15rem;
  margin-top: 20px;
}

.encontro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.encontro-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.encontro-banner-image{
    width:100%;
    display:block;
    border-radius:24px;
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 12px 40px rgba(0,0,0,.25);
}

.encontro-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.encontro-card-event {
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.encontro-card-event::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), #ff9a3c);
}

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.event-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-md);
}

.event-meta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-orange);
}

.event-meta-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.event-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--color-white-60);
  line-height: 1.7;
  margin-bottom: 28px;
}

.encontro-countdown {
  background: var(--color-dark-mid);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-md);
  padding: 20px;
  margin-bottom: 28px;
}

.countdown-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-60);
  text-align: center;
  margin-bottom: 16px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-orange);
  min-width: 60px;
  text-align: center;
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-sm);
  padding: 8px;
  line-height: 1;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-orange);
  opacity: 0.5;
  line-height: 1;
  padding-bottom: 24px;
}

.countdown-label-unit {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white-60);
}

.encontro-vagas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.vagas-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vagas-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vagas-bar-header span {
  font-size: 0.85rem;
  font-weight: 600;
}

.vagas-bar {
  height: 8px;
  background: var(--color-white-10);
  border-radius: 100px;
  overflow: hidden;
}

.vagas-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), #ff9a3c);
  border-radius: 100px;
  transition: width 1s ease;
}

.encontro-cta-section {
  background: linear-gradient(135deg, var(--color-dark-mid), var(--color-dark-light));
  border: 1px solid rgba(251,105,0,0.2);
  border-radius: var(--border-radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.encontro-cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(251,105,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.encontro-cta-section h2 {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.encontro-cta-section p {
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-guarantee {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--color-white-60);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--color-dark-mid);
  border-top: 1px solid var(--color-white-10);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--color-white-60);
  line-height: 1.7;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.social-icon:hover {
  background: var(--color-orange-10);
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.footer-nav-group h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white-60);
  margin-bottom: 20px;
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-group ul li a {
  font-size: 0.92rem;
  color: var(--color-white-80);
}

.footer-nav-group ul li a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid var(--color-white-10);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-white-60);
}

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 1024px) {
  .alta-acronym {
    grid-template-columns: repeat(2, 1fr);
  }

  .especialistas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-right {
    display: none;
  }

  .hero-eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto;
  }

  .alta-acronym {
    grid-template-columns: repeat(2, 1fr);
  }

  .metodologia-bottom {
    grid-template-columns: 1fr;
  }

  .especialistas-grid {
    grid-template-columns: 1fr;
  }

  .especialistas-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }

  .encontro-content {
    grid-template-columns: 1fr;
  }

  .encontro-cta-section {
    padding: 60px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .alta-acronym {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons-group {
    flex-direction: column;
    align-items: center;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-value {
    font-size: 1.8rem;
    min-width: 50px;
  }
}/* End custom CSS */