/* ===== NOVA PALETA ===== */
:root {
    --primary-blue-dark: #00296B;
    --primary-blue: #003F88;
    --primary-blue-light: #00509D;
    --accent-yellow: #FDC500;
    --accent-yellow-light: #FFD500;
}

/* ===== RESET GLOBAL - SEM TRANSIÇÕES ===== */
/* REMOVIDO: estava a bloquear animações premium do header e logo */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  background: radial-gradient(ellipse at 60% 40%, #003F88 0%, #00296B 70%, #001845 100%),
              linear-gradient(120deg, rgba(0,212,255,0.13) 0%, rgba(253,197,0,0.07) 100%),
              linear-gradient(90deg, rgba(0,80,157,0.18) 0%, rgba(0,41,107,0.12) 100%);
  background-blend-mode: lighten, screen, normal;
  background-size: 200% 200%;
  animation: heroGradientMove 8s ease-in-out infinite;
  color: #fff;
  padding: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO NEON GLASS FINAL ===== */
.hero-bg-blue {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background:
    radial-gradient(ellipse at 60% 40%, #001845 0%, #003F88 60%, #00102a 100%),
    linear-gradient(235deg, #003F88cc 0%, #00184500 33%),
    linear-gradient(45deg, #00D4FFcc 0%, #00184500 33%),
    linear-gradient(120deg, rgba(253,197,0,0.06) 0%, rgba(0,63,136,0.03) 100%);
  background-blend-mode: lighten, screen, normal, lighten;
  background-size: 200% 200%;
  animation: heroGradientMove 8s ease-in-out infinite;
  opacity: 1;
  pointer-events: none;
  filter: brightness(1.04) saturate(1.12);
}

.hero-bg-spotlight {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.13) 0%, rgba(253,197,0,0.08) 60%, rgba(0,63,136,0.01) 100%);
  filter: blur(48px);
  opacity: 0.22;
  mix-blend-mode: lighten;
}

.hero-bg-lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content.hero-content-centered {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  width: 100vw;
  padding: 2vh 0 0 0;
  margin: 0 auto;
  text-align: center;
  height: 100%;
}

.hero-text.hero-text-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

/* ===== HERO TÍTULO MAIÚSCULAS E GOLD PREMIUM ===== */
.hero-title-multi {
  margin-bottom: 0.2rem;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -1.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 0;
  position: relative;
  color: #fff;
  z-index: 4;
  text-transform: uppercase;
}
.hero-slogan-branco {
  color: #fff;
  font-weight: 900;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  letter-spacing: -1.2px;
  line-height: 1.05;
  text-align: center;
  display: block;
  text-shadow: 0 2px 12px #003F8855;
  margin-bottom: -0.5em;
  text-transform: uppercase;
}
.hero-slogan-marcante {
  margin-top: -0.18em !important;
  display: inline-block !important;
}
.hero-slogan-amarelo.hero-slogan-gold {
  background: linear-gradient(92deg, #FFD700 0%, #FDC500 40%, #FFF6B7 60%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  filter: drop-shadow(0 2px 16px #FFD70099) drop-shadow(0 0px 18px #FFD50044);
  font-weight: 900;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 12px #FFD70055, 0 1px 4px #FFD50022;
  position: relative;
  text-transform: uppercase;
}

.hero-destaca-detalhe {
  font-size: 1.18rem;
  color: #FFD500;
  font-weight: 800;
  margin-bottom: 2.1rem;
  margin-top: 4.2rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 16px #FFD50055, 0 1px 4px #FFD50022;
  background: linear-gradient(90deg, #FFD500 0%, #FDC500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-cta.hero-cta-centered {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
  z-index: 5;
}

.hero-btn-detalhe {
  font-size: 1.13rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px #03045E22, 0 2px 8px #FFD50022;
  padding: 1.25rem 2.7rem;
  font-weight: 800;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  backdrop-filter: blur(6px) saturate(1.1);
  background: rgba(255,255,255,0.08);
  border: 2px solid #FFD50033;
  overflow: hidden;
}

.hero-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 2.2rem;
}

/* ===== HERO WAVES ANIMADAS ===== */
.hero-wave-svg {
  pointer-events: none;
  will-change: transform;
}
.hero-wave-1 {
  animation: heroWaveMove1 14s linear infinite alternate;
}
.hero-wave-2 {
  animation: heroWaveMove2 18s linear infinite alternate;
}
@keyframes heroWaveMove1 {
  0% { transform: translateX(0) scaleY(1); }
  100% { transform: translateX(-60px) scaleY(1.04); }
}
@keyframes heroWaveMove2 {
  0% { transform: translateX(0) scaleY(1); }
  100% { transform: translateX(40px) scaleY(0.98); }
}

@keyframes heroGradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroWaveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-80px); }
}

/* ===== PADRÃO CORPORATIVO EXECUTIVO REFINADO ===== */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px),
            linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.006) 50%, transparent 50.5%),
            linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.006) 50%, transparent 50.5%),
            linear-gradient(45deg, transparent 49%, rgba(43,108,176,0.008) 50%, transparent 51%);
    background-size: 60px 60px, 60px 60px, 180px 180px, 180px 180px, 120px 120px;
    z-index: 1;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
            radial-gradient(circle,
            rgba(43, 108, 176, 0.03) 0%,
            rgba(44, 82, 130, 0.015) 40%,
            transparent 70%
            );
    z-index: 2;
    border-radius: 50%;
    filter: blur(120px);
}

/* ===== CONTAINER EXECUTIVO ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 2rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: none;
    box-shadow: none;
}

/* ===== TÍTULO EXECUTIVO - SEM TRANSIÇÕES ===== */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #00296B;
    text-shadow: none;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Primeira linha: Identidade Forte */
.hero-title .line-one {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Segunda linha: Presença Marcante */
.hero-title .line-two {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Sombra corporativa atrás do título */
.hero-title::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(26, 54, 93, 0.4),
    rgba(44, 82, 130, 0.3),
    rgba(74, 85, 104, 0.2)
    );
    z-index: -1;
    filter: blur(3px);
    opacity: 0.6;
}

/* Palavras normais */
.hero-title .normal-word {
    color: #ffffff;
    font-weight: 600;
}

/* Realce executivo das palavras "Forte" e "Marcante" */
.hero-title .highlight-forte {
    background: linear-gradient(90deg, #FDC500 0%, #FFD500 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 0px;
    filter: drop-shadow(0 2px 6px #FFD50055);
    display: inline-block;
}

.hero-title .highlight-forte::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg,
    rgba(253, 197, 0, 0.08),
    transparent 40%,
    rgba(253, 197, 0, 0.06) 80%,
    transparent
    );
    z-index: -1;
    border-radius: 4px;
    filter: blur(2px);
}

/* ===== SUBTÍTULO - SEM TRANSIÇÕES ===== */
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #003F88;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    text-align: center;
    letter-spacing: 0.8px;
    opacity: 1;
    visibility: visible;
}

/* Realce apenas para "Destaca-te connosco" */
.hero-subtitle .highlight-destaca {
    background: linear-gradient(90deg, #FDC500 0%, #FFD500 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 1.5px;
    filter: drop-shadow(0 1px 4px #FFD50055);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
}

/* ===== BOTÕES CTA - SEM TRANSIÇÕES ===== */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 0;
    opacity: 1;
    visibility: visible;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: none;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 180px;
    height: 54px;
    overflow: hidden;
    box-shadow: 0 2px 12px #EDE9E3;
    transition: all 0.2s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
    );
    z-index: 1;
}

.btn:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.btn-primary {
    background: linear-gradient(90deg, #FDC500 0%, #FFD500 100%);
    color: #00296B;
}

.btn-primary:hover {
    background: #FFD500;
    color: #003F88;
    box-shadow: 0 6px 24px #FFD50055;
}

.btn-secondary {
    background: #003F88;
    color: #fff;
}

.btn-secondary:hover {
    background: #00509D;
    color: #FFD500;
    box-shadow: 0 6px 24px #003F8855;
}

.btn i {
    font-size: 1.1rem;
    z-index: 10;
    position: relative;
}

.btn:hover i {
    transform: translateX(2px);
}

/* STATS SECTION - NOVA PALETA */
.stats-section {
    background:
        radial-gradient(circle at 60% 40%, rgba(0, 63, 136, 0.22) 0%, rgba(0, 41, 107, 0.18) 40%, rgba(0, 41, 107, 0.95) 100%),
        linear-gradient(145deg,
            #00296B 0%,
            #003F88 20%,
            #00509D 40%,
            #003F88 60%,
            #00296B 100%
        ) !important;
    padding: 8rem 0;
    position: relative;
    border-top: 2px solid #daa520;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(0deg, transparent 49.5%, rgba(255,255,255,0.006) 50%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.006) 50%, transparent 50.5%),
        linear-gradient(45deg, transparent 49%, rgba(43,108,176,0.008) 50%, transparent 51%);
    background-size: 60px 60px, 60px 60px, 180px 180px, 180px 180px, 120px 120px;
    z-index: 1;
    opacity: 0.7;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
        radial-gradient(circle,
            rgba(43, 108, 176, 0.03) 0%,
            rgba(44, 82, 130, 0.015) 40%,
            transparent 70%
        );
    z-index: 2;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.stats-section .container,
.stats-section .hero-stats,
.stats-section .stat-item {
    position: relative;
    z-index: 10;
}

.stats-section .hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-section .stat-item {
    text-align: center;
    position: relative;
    padding: 4rem 3rem 3.5rem;
    background:
            linear-gradient(135deg, rgba(255,255,255,0.18) 60%, rgba(248,250,252,0.10) 100%),
            rgba(255,255,255,0.10);
    border-radius: 32px;
    backdrop-filter: blur(36px) saturate(120%);
    border: 1.5px solid #FDC50044;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    overflow: hidden;
    box-shadow:
            0 8px 32px 0 rgba(44, 82, 130, 0.10),
            0 1.5px 6px 0 rgba(255, 215, 0, 0.10),
            0 0.5px 2px 0 rgba(255,255,255,0.08),
            0 0 0 1.5px rgba(255,255,255,0.04) inset;
    transition: box-shadow 0.4s, transform 0.4s, border-color 0.4s;
}

.stats-section .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg,
    transparent,
    #8b6914,
    #b8860b,
    #daa520,
    #ffd700,
    #daa520,
    #b8860b,
    #8b6914,
    transparent
    );
    border-radius: 0 0 4px 4px;
}

.stats-section .stat-item:hover::before {
    width: 80%;
    transition: width 1s ease 0.4s;
}

.stats-section .stat-item:hover {
    transform: translateY(-18px) scale(1.025);
    background:
            linear-gradient(135deg, rgba(255,255,255,0.22) 60%, rgba(248,250,252,0.13) 100%),
            rgba(255,255,255,0.13);
    border-color: #FFD50088;
    box-shadow:
            0 16px 48px 0 rgba(255, 215, 0, 0.13),
            0 8px 32px 0 rgba(44, 82, 130, 0.18),
            0 2px 8px 0 rgba(255,255,255,0.10),
            0 0 0 2px rgba(255,255,255,0.06) inset;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stats-section .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.7rem, 6vw, 5rem);
    font-weight: 800;
    color: #FFD500;
    display: block;
    margin-bottom: 1.5rem;
    text-shadow:
        0 6px 32px #FFD50044,
        0 2px 8px #FFD50033;
    position: relative;
    z-index: 10;
    line-height: 1;
    letter-spacing: -1px;
    filter: drop-shadow(0 0 18px #FFD50088);
}

.stats-section .stat-number::after {
    content: '+';
    font-size: 0.4em;
    opacity: 0.8;
    color: #ffd700;
    margin-left: 8px;
    text-shadow:
            0 2px 8px rgba(255, 215, 0, 0.3),
            0 1px 4px rgba(255, 215, 0, 0.2);
    vertical-align: super;
    font-weight: 600;
}

.stats-section .stat-item:last-child .stat-number::after {
    content: '';
}

.stats-section .stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    color: #FDC500;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 600;
    position: relative;
    z-index: 10;
    line-height: 1.4;
    opacity: 0.97;
    text-shadow: 0 1px 8px #00296B22;
}

/* ===== GLASSMORPHISM CARD HERO ===== */
.hero-glass-card {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  width: 92vw;
  max-width: 900px;
  min-height: 420px;
  height: 60vh;
  border-radius: 38px;
  background: linear-gradient(120deg, rgba(0,212,255,0.13) 0%, rgba(0,63,136,0.10) 60%, rgba(255,255,255,0.07) 100%), rgba(255,255,255,0.04);
  box-shadow: 0 8px 48px 0 rgba(44, 82, 130, 0.13), 0 1.5px 6px 0 rgba(253, 197, 0, 0.10), 0 0.5px 2px 0 rgba(255,255,255,0.08), 0 0 0 1.5px rgba(255,255,255,0.04) inset;
  border: 2.5px solid rgba(253,197,0,0.13);
  backdrop-filter: blur(38px) saturate(1.18);
  z-index: 2;
  pointer-events: none;
  opacity: 0.98;
  transition: box-shadow 0.4s, border-color 0.4s, opacity 0.3s, top 0.4s;
}

.hero-glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(112deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.04) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.13;
  animation: reflexoHero 6.5s cubic-bezier(.4,1.6,.6,1) infinite alternate;
}

.hero-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 18%;
  border-radius: 38px 38px 60px 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.04) 100%);
  filter: blur(8px);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

/* ===== HERO SHAPES & LINHAS MODERNAS ===== */
.hero-shapes {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 6;
  pointer-events: none;
}
.shape-diamond {
  position: absolute;
  width: 38px; height: 38px;
  background: linear-gradient(135deg, rgba(0,212,255,0.13) 0%, rgba(253,197,0,0.09) 100%);
  border-radius: 8px;
  transform: rotate(45deg);
  opacity: 0.22;
  filter: blur(1.5px) brightness(1.08);
  box-shadow: 0 2px 18px #003F8822;
  animation: diamondFloat 8s ease-in-out infinite alternate;
}
.shape-rect {
  position: absolute;
  width: 54px; height: 18px;
  background: linear-gradient(90deg, rgba(0,63,136,0.13) 0%, rgba(255,255,255,0.07) 100%);
  border-radius: 6px;
  opacity: 0.16;
  filter: blur(1.2px) brightness(1.05);
  box-shadow: 0 1px 8px #FFD50022;
  animation: rectFloat 7s ease-in-out infinite alternate;
}
@keyframes diamondFloat {
  0% { transform: rotate(45deg) translateY(0); }
  100% { transform: rotate(45deg) translateY(12px); }
}
@keyframes rectFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hero-line-diag {
  opacity: 0.38;
  filter: blur(0.5px);
  transition: opacity 0.4s;
}

/* ===== HERO GLASSMORPHISM REFLEXO ANIMADO ===== */
.hero-glass-card::after {
  /* já existe gradiente, adicionar reflexo animado */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 60%, transparent 100%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.18;
  animation: reflexoHero 6.5s cubic-bezier(.4,1.6,.6,1) infinite alternate;
}
@keyframes reflexoHero {
  0% { opacity: 0.09; background-position: -120px 0; }
  100% { opacity: 0.18; background-position: 320px 0; }
}

/* ===== PARTÍCULAS PREMIUM HERO ===== */
.hero-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  filter: blur(1.5px) brightness(1.2);
  transition: opacity 0.4s;
}

/* ===== MICROANIMAÇÕES BOTÃO HERO ===== */
.hero-btn-detalhe {
  position: relative;
  overflow: hidden;
}
.hero-btn-detalhe::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(253,197,0,0.12) 100%);
  filter: blur(2px);
  z-index: 1;
  transition: left 0.6s cubic-bezier(.4,1.6,.6,1);
}
.hero-btn-detalhe:hover::before {
  left: 120%;
}
.hero-btn-detalhe i {
  transition: transform 0.5s cubic-bezier(.4,1.6,.6,1);
}
.hero-btn-detalhe i.fa-rocket {
  color: #003F88;
  z-index: 10;
  position: relative;
  transition: transform 0.5s cubic-bezier(.4,1.6,.6,1), color 0.3s;
  filter: none;
}
.hero-btn-detalhe:hover i.fa-rocket {
  transform: translateY(-7px) scale(1.18) rotate(-12deg);
  color: #FFD500 !important;
  filter: drop-shadow(0 2px 8px #FFD50088);
  opacity: 1 !important;
}
.hero-btn-detalhe:active i.fa-rocket {
  color: #FDC500 !important;
  opacity: 1 !important;
}
.hero-btn-detalhe:hover i.fa-star {
  animation: starTwinkle 0.8s linear;
}
@keyframes starTwinkle {
  0%,100% { transform: scale(1) rotate(0deg); color: #FFD500; }
  30% { transform: scale(1.25) rotate(-18deg); color: #fffbe6; }
  60% { transform: scale(0.92) rotate(12deg); color: #FFD500; }
}

/* ===== HERO SVG DETAILS & BRILHOS ===== */
.hero-svg-detail {
  pointer-events: none;
  user-select: none;
  opacity: 0.82;
  filter: drop-shadow(0 2px 18px #FFD50033) drop-shadow(0 0px 12px #00D4FF22);
  transition: opacity 0.4s;
}
.hero-svg-circle { animation: heroCircleFloat 7s ease-in-out infinite alternate; }
.hero-svg-curve { animation: heroCurveFloat 9s ease-in-out infinite alternate; }
@keyframes heroCircleFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.82; }
  100% { transform: translateY(18px) scale(1.04); opacity: 1; }
}
@keyframes heroCurveFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.82; }
  100% { transform: translateY(-12px) scale(1.03); opacity: 1; }
}

.hero-brilhos {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 5;
  pointer-events: none;
}
.hero-brilhos .brilho {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFD500 0%, #fffbe6 60%, transparent 100%);
  opacity: 0.75;
  filter: blur(2.5px) brightness(1.2);
  animation: brilhoPisca 2.8s infinite alternate;
}
.hero-brilhos .brilho.azul {
  background: radial-gradient(circle, #00D4FF 0%, #fff 60%, transparent 100%);
  opacity: 0.55;
  filter: blur(2.5px) brightness(1.1);
  animation-delay: 1.2s;
}
@keyframes brilhoPisca {
  0% { opacity: 0.7; transform: scale(1); }
  60% { opacity: 1; transform: scale(1.18); }
  100% { opacity: 0.4; transform: scale(0.92); }
}

/* RESPONSIVO GLASS CARD */
@media (max-width: 900px) {
  .hero-glass-card { max-width: 98vw; min-height: 320px; height: 48vh; border-radius: 24px; top: 57%; }
  .hero-glass-card::before, .hero-glass-card::after { border-radius: 24px 24px 40px 40px; }
  .hero-svg-circle { width: 70px; height: 70px; }
  .hero-svg-curve { width: 110px; height: 40px; }
  .shape-diamond { width: 22px; height: 22px; }
  .shape-rect { width: 32px; height: 10px; }
}
@media (max-width: 600px) {
  .hero-glass-card { min-height: 180px; height: 32vh; border-radius: 14px; top: 60%; }
  .hero-glass-card::before, .hero-glass-card::after { border-radius: 14px 14px 24px 24px; }
  .hero-svg-circle { width: 38px; height: 38px; }
  .hero-svg-curve { width: 60px; height: 18px; }
  .shape-diamond { width: 12px; height: 12px; }
  .shape-rect { width: 18px; height: 6px; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .hero {
        min-height: 90vh;
        height: 90vh;
        padding: 0;
    }
    .hero-content.hero-content-centered {
        min-height: 60vh;
        padding: 8vh 0 0 0;
    }

    .container {
        padding: 0 3rem;
    }

    .hero-content {
        padding: 0 1.5rem;
        transform: translateY(3rem);
    }

    .stats-section {
        padding: 4rem 0;
    }

    .stats-section .container {
        padding: 0 3rem;
    }

    .stats-section .hero-stats {
        gap: 2.5rem;
    }

    .stats-section .stat-item {
        min-width: 180px;
        padding: 2.5rem 1.5rem 2rem;
        border-radius: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        height: 80vh;
        padding: 0;
    }
    .hero-content.hero-content-centered {
        min-height: 50vh;
        padding: 4vh 0 0 0;
    }

    .container {
        padding: 0 2rem;
    }

    .hero-content {
        padding: 8rem 1rem 2rem;
        min-height: 100vh;
        transform: translateY(2rem);
    }

    .hero-title {
        margin-bottom: 2rem;
    }

    .hero-title .line-one,
    .hero-title .line-two {
        flex-direction: column;
        gap: 0.2rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        height: 56px;
        padding: 1.4rem 2.5rem;
        min-width: auto;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-section .container {
        padding: 0 2rem;
    }

    .stats-section .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        max-width: none;
    }

    .stats-section .stat-item {
        flex: 1;
        min-width: 120px;
        max-width: none;
        height: 110px;
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        height: 70vh;
        padding: 0;
    }
    .hero-content.hero-content-centered {
        min-height: 40vh;
        padding: 2vh 0 0 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 6rem 0 2rem;
        transform: translateY(1rem);
    }

    .hero-title {
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-cta {
        margin-bottom: 0;
    }

    .btn {
        height: 52px;
        padding: 1.2rem 2rem;
        font-size: 0.9rem;
    }

    .stats-section {
        padding: 2.5rem 0;
    }

    .stats-section .container {
        padding: 0 1.5rem;
    }

    .stats-section .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .stats-section .stat-item {
        width: 100%;
        max-width: 250px;
        height: 90px;
        padding: 1.8rem 1rem 1.5rem;
        border-radius: 14px;
    }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-cta,
    .particle,
    .btn,
    .stat-item {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero::before,
    .hero::after {
        animation: none;
    }
}

/* ===== ELEMENTO SR-ONLY PARA ACESSIBILIDADE ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== HERO BACKGROUND LIGHTS & GRID ===== */
.light-ellipse {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(48px);
  z-index: 1;
  mix-blend-mode: lighten;
  animation: ellipseFloat 8s ease-in-out infinite alternate;
}
.light-ellipse.blue {
  background: radial-gradient(circle, #003F88 0%, #00509D 100%);
  width: 320px; height: 120px; top: 18%; left: 12%; opacity: 0.18;
}
.light-ellipse.yellow {
  background: radial-gradient(circle, #FFD500 0%, #FDC500 100%);
  width: 180px; height: 80px; top: 62%; left: 18%; opacity: 0.13;
}
.light-ellipse.cyan {
  background: radial-gradient(circle, #00D4FF 0%, #003F88 100%);
  width: 220px; height: 90px; top: 38%; left: 62%; opacity: 0.14;
}
.light-ellipse.gold {
  background: radial-gradient(circle, #FFD700 0%, #FFF6B7 100%);
  opacity: 0.10;
}
.light-ellipse.cyan2 {
  background: radial-gradient(circle, #00D4FF 0%, #fff 100%);
  opacity: 0.09;
}
@keyframes ellipseFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(18px); }
}

.hero-bg-flare {
  position: absolute;
  top: 18%; left: 38%; width: 340px; height: 80px;
  background: linear-gradient(112deg, rgba(255,255,255,0.18) 0%, rgba(253,197,0,0.08) 100%);
  filter: blur(48px);
  opacity: 0.13;
  border-radius: 80px;
  z-index: 3;
  pointer-events: none;
  animation: flareMove 9s ease-in-out infinite alternate;
}
@keyframes flareMove {
  0% { left: 38%; opacity: 0.13; }
  100% { left: 48%; opacity: 0.19; }
}

/* ===== HERO CRACK SVG ===== */
.hero-crack-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 540px;
  max-width: 90vw;
  height: 220px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 8px 32px #003F8822) blur(0.5px);
  opacity: 0.92;
}
@media (max-width: 900px) {
  .hero-crack-svg { width: 340px; height: 120px; }
}
@media (max-width: 600px) {
  .hero-crack-svg { width: 180px; height: 60px; }
}

/* ===== HERO LUMINOUS WAVE ===== */
.hero-luminous-wave {
  position: absolute;
  top: 0%;
  left: 0;
  width: 900px;
  max-width: 120vw;
  height: 900px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: blur(18px) brightness(1.18);
  transition: opacity 0.4s;
}
@media (max-width: 900px) {
  .hero-luminous-wave { width: 340px; height: 340px; }
}
@media (max-width: 600px) {
  .hero-luminous-wave { width: 180px; height: 180px; }
}

/* Shines/Glows premium */
.hero-shine {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #fffbe6 0%, #FFD500 60%, transparent 100%);
  opacity: 0.18;
  filter: blur(64px) brightness(1.2);
  z-index: 2;
  pointer-events: none;
  top: 8%; left: 68%;
  animation: shineMove 7s ease-in-out infinite alternate;
}
.hero-shine-cyan {
  background: radial-gradient(circle, #00D4FF 0%, #fff 60%, transparent 100%);
  opacity: 0.13;
  top: 72%; left: 18%;
  animation-delay: 2.5s;
}
@keyframes shineMove {
  0% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.08) translateY(18px); }
}