/* ============================================================
   MBA SMS ÓLEO E GÁS NATURAL - VERSÃO 2 (DARK GLASSMORPHISM & NEON GLOW)
   Fundo: Plataforma Offshore Visível através de Vidro Translúcido
   Contornos: Neon Dourado (#C5A059 / #FFB300) e Ciano Elétrico (#00E5FF)
   ============================================================ */

:root {
  --alm-blue: #002B49;
  --alm-blue-light: #0284C7;
  --alm-gold: #E5B55E;
  --alm-gold-dark: #C5A059;
  --alm-cyan-neon: #00E5FF;
  --alm-dark: #FFFFFF;
  --alm-text-muted: #CBD5E1;
  --alm-text-dim: #94A3B8;
  --alm-glass-dark: rgba(3, 15, 30, 0.72);
  --alm-glass-inner: rgba(5, 23, 44, 0.78);
  --alm-border-neon: rgba(229, 181, 94, 0.38);
  --alm-border-hover: rgba(0, 229, 255, 0.75);
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--alm-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #020812;
  overflow-x: hidden;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none !important;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BACKGROUND FIXO CINEMATOGRÁFICO - PLATAFORMA TOTALMENTE VISÍVEL
   ============================================================ */
.bg-offshore-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
}

.bg-offshore-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
  transition: none !important;
  filter: brightness(0.95) contrast(1.08);
}

.bg-offshore-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at center,
    rgba(2, 8, 18, 0.25) 0%,
    rgba(2, 8, 18, 0.55) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   HEADER COMPACTO EM BRANCO TRANSLÚCIDO (ALTO CONTRASTE)
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.brand-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* LOGO: SÍMBOLO + TEXTO REAL VETORIAL */
.brand-brandmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.brand-symbol-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-brandmark:hover .brand-symbol-img {
  transform: rotate(12deg) scale(1.06);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #002B49;
}

.brand-tagline {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #64748B;
  text-transform: uppercase;
  line-height: 1.25;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background-color: #CBD5E1;
}

/* LOGO OFICIAL ANHANGUERA (CO-BRAND) */
.partner-co-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-anhanguera-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-mec-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #002B49;
  background-color: #EEF2F6;
  border: 1px solid #CBD5E1;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-whatsapp {
  font-size: 0.9rem;
  font-weight: 600;
  color: #002B49;
  padding: 8px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 6px;
  background: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.btn-header-whatsapp:hover {
  background: #F8FAFC;
  border-color: #25D366;
  color: #16A34A;
  transform: translateY(-2px);
}

.btn-header-primary {
  font-size: 0.9rem;
  font-weight: 700;
  background-color: #002B49;
  color: #FFFFFF !important;
  padding: 9px 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 43, 73, 0.25);
  transition: all 0.25s ease;
}

.btn-header-primary:hover {
  background-color: #004B80;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 43, 73, 0.35);
}

/* ============================================================
   HERO SECTION - VIDRO TRANSLÚCIDO E CONTORNOS DE NEON
   ============================================================ */
.hero-section {
  padding: 70px 0 50px;
}

.hero-glass-card {
  background: var(--alm-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--alm-border-neon);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 181, 94, 0.15);
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-glass-card:hover {
  border-color: rgba(229, 181, 94, 0.65);
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.7), 0 0 30px rgba(229, 181, 94, 0.25);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 18px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-gold {
  background: rgba(229, 181, 94, 0.15);
  color: var(--alm-gold);
  border: 1px solid rgba(229, 181, 94, 0.4);
  box-shadow: 0 0 14px rgba(229, 181, 94, 0.2);
}

.badge-blue {
  background: rgba(0, 229, 255, 0.12);
  color: var(--alm-cyan-neon);
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.2);
}

/* Indicador Pulsante Neon */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--alm-cyan-neon);
  box-shadow: 0 0 10px var(--alm-cyan-neon);
  animation: neonPulse 1.8s infinite;
}

@keyframes neonPulse {
  0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 6px var(--alm-cyan-neon); }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px var(--alm-cyan-neon), 0 0 22px var(--alm-cyan-neon); }
  100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 6px var(--alm-cyan-neon); }
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.18;
  margin: 0 auto 20px;
  max-width: 960px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--alm-text-muted);
  max-width: 840px;
  margin: 0 auto 35px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle strong {
  color: #FFFFFF;
}

/* 2 CARDS POR LINHA COM CONTORNO NEON GLOW E FLUTUAÇÃO */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto 40px;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.highlight-box {
  background: var(--alm-glass-inner);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(229, 181, 94, 0.3);
  padding: 22px 24px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(229, 181, 94, 0.05);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: floatCard 4s ease-in-out infinite;
}

.highlight-box:nth-child(1) { animation-delay: 0s; }
.highlight-box:nth-child(2) { animation-delay: 0.8s; }
.highlight-box:nth-child(3) { animation-delay: 1.6s; }
.highlight-box:nth-child(4) { animation-delay: 2.4s; }

.highlight-box:hover {
  transform: translateY(-9px) scale(1.03);
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 15px 30px rgba(0, 0, 0, 0.6);
  animation-play-state: paused;
}

.highlight-box strong {
  display: block;
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 5px;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.highlight-box span {
  font-size: 0.9rem;
  color: var(--alm-text-muted);
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.btn-cta-large {
  font-size: 1.05rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--alm-gold) 0%, var(--alm-gold-dark) 100%);
  color: #030E1C !important;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 0 25px rgba(229, 181, 94, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-cta-large:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px rgba(229, 181, 94, 0.8), 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn-cta-secondary {
  font-size: 1.05rem;
  font-weight: 600;
  background: rgba(3, 15, 30, 0.7);
  backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  border: 1px solid rgba(0, 229, 255, 0.5);
  padding: 16px 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transition: all 0.25s ease;
}

.btn-cta-secondary:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.45);
  transform: translateY(-3px);
}

/* ============================================================
   SEÇÕES EM GLASSMORPHISM ESCURO COM CONTORNOS DE NEON
   ============================================================ */
.section-padding {
  padding: 45px 0;
}

.section-glass-container {
  background: var(--alm-glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--alm-border-neon);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease;
}

.section-glass-container:hover {
  border-color: rgba(229, 181, 94, 0.5);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 35px;
}

.section-pretitle {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--alm-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
  text-shadow: 0 0 10px rgba(229, 181, 94, 0.3);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

.section-desc {
  font-size: 1.02rem;
  color: var(--alm-text-muted);
}

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

.info-card {
  background: var(--alm-glass-inner);
  border: 1px solid rgba(229, 181, 94, 0.25);
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  transform: translateY(-7px);
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.35), 0 15px 30px rgba(0, 0, 0, 0.6);
}

.info-card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(229, 181, 94, 0.5));
}

.info-card h3 {
  font-size: 1.28rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  text-align: center;
}

.info-card p {
  font-size: 0.92rem;
  color: var(--alm-text-muted);
  text-align: center;
  line-height: 1.6;
}

/* Imagens de Público-Alvo */
.audience-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #020812;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.audience-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover .audience-card-img {
  transform: scale(1.08);
}

/* ============================================================
   GRADE CURRICULAR (ACORDEÃO TRANSLÚCIDO)
   ============================================================ */
.curriculum-container {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid rgba(229, 181, 94, 0.25);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--alm-glass-inner);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.accordion-item:hover, .accordion-item.active {
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.2);
}

.accordion-header {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.04);
}

.accordion-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.module-num {
  font-weight: 800;
  font-size: 1rem;
  color: var(--alm-gold);
  text-shadow: 0 0 8px rgba(229, 181, 94, 0.4);
}

.accordion-title-group h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
}

.module-hours {
  font-size: 0.8rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 12px;
  border-radius: 12px;
  color: var(--alm-cyan-neon);
  font-weight: 700;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 22px;
  background: rgba(2, 9, 20, 0.6);
}

.accordion-item.active .accordion-body {
  max-height: 400px;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-body ul {
  list-style: none;
}

.accordion-body li {
  font-size: 0.92rem;
  color: var(--alm-text-muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.accordion-body li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  color: var(--alm-gold);
}

/* ============================================================
   CORPO DOCENTE COM BADGES NEON
   ============================================================ */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.faculty-card {
  background: var(--alm-glass-inner);
  border: 1px solid rgba(229, 181, 94, 0.22);
  padding: 22px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.faculty-card:hover {
  transform: translateY(-5px);
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

/* EFEITO DE TEXTO FLUTUANTE AO PASSAR O MOUSE (TOOLTIP) */
.faculty-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 270px;
  background: rgba(3, 14, 28, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--alm-cyan-neon);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.4), 0 15px 35px rgba(0, 0, 0, 0.85);
  padding: 14px 16px;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 70;
  text-align: center;
}

.faculty-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 7px;
  border-style: solid;
  border-color: rgba(3, 14, 28, 0.96) transparent transparent transparent;
}

.faculty-card:hover .faculty-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}

.tooltip-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.tooltip-degree {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--alm-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.tooltip-bio {
  font-size: 0.78rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.faculty-avatar-placeholder {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002B49 0%, #004B80 100%);
  border: 2px solid var(--alm-gold);
  box-shadow: 0 0 15px rgba(229, 181, 94, 0.4);
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.faculty-card h4 {
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.faculty-degree {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--alm-cyan-neon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faculty-discipline {
  font-size: 0.82rem;
  color: var(--alm-text-dim);
  margin-top: 6px;
}

/* ============================================================
   OFERTA, CUPOM E FORMULÁRIO COM NEON CONTORNOS
   ============================================================ */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}

.offer-details-box {
  background: var(--alm-glass-inner);
  border: 1px solid rgba(229, 181, 94, 0.4);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.badge-blackfriday {
  background: #000000;
  border: 1px solid var(--alm-gold);
  color: var(--alm-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 15px rgba(229, 181, 94, 0.4);
}

.price-old {
  font-size: 1rem;
  color: #94A3B8;
  text-decoration: line-through;
  margin-top: 14px;
  display: block;
}

.price-installments {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 6px 0;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

.price-installments .installment-highlight {
  color: var(--alm-gold);
}

.price-cash {
  font-size: 1.15rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 10px;
}

.price-economy-badge {
  display: inline-block;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid #25D366;
  color: #25D366;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.25);
}

.coupon-box {
  background: rgba(2, 9, 20, 0.8);
  border: 1px dashed var(--alm-gold);
  box-shadow: 0 0 15px rgba(229, 181, 94, 0.2);
  padding: 14px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.coupon-input {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--alm-gold);
  background: transparent;
  border: none;
  width: 90px;
  outline: none;
  text-shadow: 0 0 8px rgba(229, 181, 94, 0.5);
}

.btn-copy-coupon {
  background: linear-gradient(135deg, var(--alm-gold) 0%, var(--alm-gold-dark) 100%);
  color: #030E1C !important;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(229, 181, 94, 0.3);
  transition: all 0.2s;
}

.btn-copy-coupon:hover {
  box-shadow: 0 0 20px rgba(229, 181, 94, 0.6);
  transform: translateY(-2px);
}

.form-card {
  background: var(--alm-glass-inner);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), 0 0 40px rgba(0, 0, 0, 0.6);
}

.form-card h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  background: rgba(2, 9, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  font-size: 0.95rem;
  color: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(135deg, var(--alm-gold) 0%, var(--alm-gold-dark) 100%);
  color: #030E1C !important;
  border: none;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(229, 181, 94, 0.4);
  transition: all 0.25s;
}

.btn-submit-form:hover {
  box-shadow: 0 0 35px rgba(229, 181, 94, 0.7);
  transform: translateY(-2px);
}

/* ============================================================
   RODAPÉ COMPACTO EM BRANCO TRANSLÚCIDO
   ============================================================ */
.site-footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  padding: 35px 0;
  font-size: 0.85rem;
  color: #475569;
  margin-top: 50px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-content strong {
  color: #002B49;
}

.btn-whatsapp-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s;
}

/* ============================================================
   SEÇÃO DESTAQUE: PARCERIA ALM & ANHANGUERA (EFEITO DE MOVIMENTO)
   ============================================================ */
.partnership-glass-box {
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.15), 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.partnership-glass-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: ambientLightPulse 8s ease-in-out infinite alternate;
}

@keyframes ambientLightPulse {
  0% { transform: scale(0.9) translate(-10px, -10px); opacity: 0.5; }
  100% { transform: scale(1.1) translate(10px, 10px); opacity: 1; }
}

.partnership-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 140px 1fr;
  align-items: center;
  gap: 24px;
  margin: 40px 0 35px;
}

.partner-showcase-card {
  background: var(--alm-glass-inner);
  border: 1px solid rgba(229, 181, 94, 0.3);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.partner-showcase-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--alm-cyan-neon);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35), 0 20px 40px rgba(0, 0, 0, 0.7);
}

.partner-showcase-card.anhanguera-card {
  border-color: rgba(245, 130, 32, 0.4);
}

.partner-showcase-card.anhanguera-card:hover {
  border-color: #FF8A00;
  box-shadow: 0 0 30px rgba(255, 138, 0, 0.35), 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* PALCO DO LOGO COM EFEITO DE MOVIMENTO FLUTUANTE */
.partner-logo-stage {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.partner-halo {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.75;
  transition: all 0.4s ease;
  animation: haloPulse 4s ease-in-out infinite alternate;
}

.halo-alm {
  background: radial-gradient(circle, rgba(229, 181, 94, 0.6) 0%, rgba(0, 229, 255, 0.3) 50%, transparent 75%);
}

.halo-anhanguera {
  background: radial-gradient(circle, rgba(255, 120, 0, 0.6) 0%, rgba(229, 181, 94, 0.35) 50%, transparent 75%);
}

@keyframes haloPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0.95; }
}

.partner-floating-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: brandFloating 4.5s ease-in-out infinite;
}

.anhanguera-card .partner-floating-logo {
  animation-delay: 2.25s;
}

@keyframes brandFloating {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.partner-showcase-card:hover .partner-floating-logo {
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* FAIXA BRANCA UNIFORME PARA OS LOGOS DA PARCERIA */
.partner-white-badge {
  background: #FFFFFF;
  padding: 10px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  box-sizing: border-box;
}

.partner-big-symbol {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-right: 12px;
}

.partner-logo-typography {
  text-align: left;
  line-height: 1.15;
}

.partner-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #002B49;
  letter-spacing: -0.5px;
  display: block;
}

.partner-brand-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #64748B;
  text-transform: uppercase;
  display: block;
}

.partner-big-anhanguera {
  max-width: 220px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* CONTEÚDO DOS CARDS */
.partner-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.badge-alm {
  background: rgba(229, 181, 94, 0.18);
  color: var(--alm-gold);
  border: 1px solid rgba(229, 181, 94, 0.5);
}

.badge-mec {
  background: rgba(0, 229, 255, 0.18);
  color: var(--alm-cyan-neon);
  border: 1px solid var(--alm-cyan-neon);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.partner-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.partner-card-desc {
  font-size: 0.88rem;
  color: var(--alm-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

/* BLOCO DE BENEFÍCIOS ALINHADO AO CENTRO COM UM ÚNICO ÍCONE */
.partner-centered-feature-block {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-single-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(229, 181, 94, 0.25);
  box-shadow: 0 0 15px rgba(229, 181, 94, 0.15);
}

.feature-single-icon.mec-icon {
  border-color: rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.partner-centered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.partner-centered-list li {
  font-size: 0.86rem;
  color: #E2E8F0;
  line-height: 1.45;
  text-align: center;
}

/* CONECTOR CENTRAL DE SINERGIA */
.partnership-synergy-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.synergy-line-beam {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, rgba(229, 181, 94, 0) 0%, var(--alm-cyan-neon) 50%, rgba(229, 181, 94, 0) 100%);
  animation: beamFlow 2.5s linear infinite;
}

@keyframes beamFlow {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

.synergy-orb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(3, 14, 28, 0.9);
  border: 2px solid var(--alm-gold);
  box-shadow: 0 0 20px rgba(229, 181, 94, 0.6), inset 0 0 15px rgba(0, 229, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  animation: orbPulse 3s ease-in-out infinite;
  z-index: 5;
}

@keyframes orbPulse {
  0% { transform: scale(0.96); box-shadow: 0 0 15px rgba(229, 181, 94, 0.4); }
  50% { transform: scale(1.06); box-shadow: 0 0 30px rgba(0, 229, 255, 0.8), 0 0 45px rgba(229, 181, 94, 0.6); }
  100% { transform: scale(0.96); box-shadow: 0 0 15px rgba(229, 181, 94, 0.4); }
}

.synergy-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.synergy-label {
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--alm-cyan-neon);
  text-align: center;
  margin-top: 3px;
  letter-spacing: 0.4px;
}

/* BANNER MEC OFICIAL NA PARCERIA */
.partnership-mec-banner {
  background: rgba(0, 43, 73, 0.85);
  border: 1px solid var(--alm-gold);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 0 25px rgba(229, 181, 94, 0.2);
}

.mec-banner-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.mec-banner-text {
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 1.5;
  flex: 1;
}

.mec-banner-text strong {
  color: var(--alm-gold);
}

.btn-cta-primary,
.mec-banner-btn {
  white-space: nowrap;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--alm-gold) 0%, var(--alm-gold-dark) 100%);
  color: #030E1C !important;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 0 20px rgba(229, 181, 94, 0.5), 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-cta-primary:hover,
.mec-banner-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 35px rgba(229, 181, 94, 0.8), 0 8px 25px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #FFD580 0%, var(--alm-gold) 100%);
  color: #001726 !important;
}

@media (max-width: 960px) {
  .partnership-showcase-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .partnership-synergy-connector {
    flex-direction: row;
    padding: 10px 0;
  }
  .synergy-line-beam {
    width: 60px;
    height: 2px;
  }
  .partnership-mec-banner {
    flex-direction: column;
    text-align: center;
  }
  .mec-banner-btn {
    width: 100%;
  }
}

/* ============================================================
   SEÇÃO VÍDEO & O BOOM DO MERCADO DE ENERGIA
   ============================================================ */
.video-market-section {
  position: relative;
}

.video-market-glass-box {
  border: 1px solid rgba(229, 181, 94, 0.35);
  box-shadow: 0 0 35px rgba(229, 181, 94, 0.12), 0 25px 60px rgba(0, 0, 0, 0.7);
}

.market-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

.market-stat-card {
  background: rgba(3, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: all 0.3s;
}

.market-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--alm-gold);
  box-shadow: 0 0 15px rgba(229, 181, 94, 0.3);
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--alm-gold);
  display: block;
  line-height: 1.15;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: #CBD5E1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  display: block;
}

.video-wrapper-container {
  max-width: 860px;
  margin: 0 auto 35px;
  position: relative;
}

.video-responsive-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.25), 0 25px 50px rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(0, 229, 255, 0.5);
  background: #020C18;
}

.video-responsive-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.market-persuasive-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.market-persuasive-text {
  font-size: 1.05rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 24px;
}

.market-persuasive-text strong {
  color: #FFFFFF;
}

.market-persuasive-text .highlight-text {
  color: var(--alm-gold);
  font-weight: 700;
}

.market-cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 960px) {
  .market-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-glass-card, .section-glass-container {
    padding: 25px 20px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .header-cta-group {
    display: none;
  }
}

@media (max-width: 580px) {
  .hero-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================================================
   BOX DE COMPARTILHAMENTO EM REDES SOCIAIS (WHATSAPP & TELEGRAM)
   ============================================================ */
.share-opportunity-card {
  margin-top: 35px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.share-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.share-brand-compact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-symbol-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 4px;
}

.share-brand-compact strong {
  display: block;
  font-size: 1rem;
  color: #FFFFFF;
}

.share-brand-compact span {
  display: block;
  font-size: 0.78rem;
  color: var(--alm-text-dim);
}

.share-badge-mec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.6);
  color: #FCD34D;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.share-body h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.share-body p {
  font-size: 0.88rem;
  color: var(--alm-text-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}

.share-actions-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-share-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-share-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-share-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-share-telegram {
  background: #0088CC;
  color: #FFFFFF;
}

.btn-share-telegram:hover {
  background: #0077B5;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.btn-share-copy {
  background: rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-share-copy:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transform: translateY(-2px);
}

