/* ==========================================================================
   EMPRESA — página institucional (Sobre a Aureon Volts).
   Reaproveita os tokens (variables.css) e os componentes compartilhados
   (section-label/title/sub, .reveal, botões, footer). Estilos próprios abaixo.
   ========================================================================== */

/* Seções: respiro vertical e centralização de títulos */
#emp-hero,
#emp-essencia,
#emp-mv,
#emp-pilares,
#emp-valores,
#emp-trajetoria,
#emp-numeros,
#emp-cta {
  position: relative;
  z-index: 1;
  padding: 88px 5%;
}

#emp-mv,
#emp-valores {
  background: linear-gradient(180deg, transparent, rgba(0, 207, 255, 0.02));
}

.emp-block-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

.emp-block-title span {
  color: var(--electric);
}

/* ─── HERO ─── */
#emp-hero {
  padding-top: 130px;
}

.emp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.emp-hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 22px;
}

.emp-hero-title span {
  color: var(--electric);
  text-shadow: 0 0 30px rgba(0, 207, 255, 0.35);
}

.emp-hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.12rem);
  color: var(--white);
  opacity: 0.92;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 14px;
}

.emp-hero-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 32px;
}

.emp-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Cartão-identidade do hero */
.emp-hero-card {
  background: rgba(10, 24, 41, 0.7);
  border: 1px solid rgba(0, 207, 255, 0.18);
  padding: 30px 30px 24px;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.emp-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric), var(--gold), transparent);
}

.ehc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 20px;
}

.ehc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: ehc-blink 1.6s infinite;
}

@keyframes ehc-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.ehc-brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 22px;
}

.ehc-brand span {
  color: var(--gold);
}

.ehc-triad {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.ehc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  padding: 10px 14px;
  background: rgba(0, 207, 255, 0.05);
  border-left: 2px solid var(--electric);
}

.ehc-item span {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  color: var(--electric);
}

.ehc-foot {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 207, 255, 0.1);
}

/* ─── QUEM SOMOS ─── */
.emp-essencia-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.emp-essencia-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.emp-essencia-text strong {
  color: var(--electric);
  font-weight: 700;
}

.emp-facts {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

.emp-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--white);
}

.emp-fact-ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 1px solid rgba(0, 255, 153, 0.35);
  border-radius: 50%;
}

.emp-fact-ic svg {
  width: 12px;
  height: 12px;
}

.emp-essencia-visual {
  display: flex;
  justify-content: center;
}

.emp-circuit {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* ─── MISSÃO / VISÃO ─── */
.emp-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.emp-mv-card {
  background: rgba(10, 24, 41, 0.6);
  border: 1px solid rgba(0, 207, 255, 0.14);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
}

.emp-mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--electric);
}

.emp-mv-card.gold::before {
  background: var(--gold);
}

.emp-mv-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  border: 1px solid rgba(0, 207, 255, 0.25);
  background: rgba(0, 207, 255, 0.05);
  margin-bottom: 20px;
}

.emp-mv-card.gold .emp-mv-icon {
  color: var(--gold);
  border-color: rgba(240, 165, 0, 0.3);
  background: rgba(240, 165, 0, 0.05);
}

.emp-mv-icon svg {
  width: 26px;
  height: 26px;
}

.emp-mv-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.emp-mv-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ─── PILARES ─── */
.emp-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.emp-pilar {
  background: rgba(10, 24, 41, 0.55);
  border: 1px solid rgba(0, 207, 255, 0.14);
  padding: 30px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.emp-pilar:hover {
  border-color: rgba(0, 207, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 207, 255, 0.08);
  transform: translateY(-4px);
}

.emp-pilar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.emp-pilar-ic {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  background: rgba(0, 207, 255, 0.06);
  border: 1px solid rgba(0, 207, 255, 0.18);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.emp-pilar-ic svg {
  width: 24px;
  height: 24px;
}

.emp-pilar-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  color: rgba(0, 207, 255, 0.25);
}

.emp-pilar h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.emp-pilar p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ─── VALORES ─── */
.emp-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.emp-valor {
  background: rgba(10, 24, 41, 0.5);
  border: 1px solid rgba(0, 207, 255, 0.12);
  padding: 26px 24px;
  transition: border-color 0.3s, transform 0.3s;
}

.emp-valor:hover {
  border-color: rgba(0, 207, 255, 0.35);
  transform: translateY(-3px);
}

.emp-valor-ic {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  background: rgba(0, 207, 255, 0.05);
  border-radius: 50%;
  margin-bottom: 16px;
}

.emp-valor-ic svg {
  width: 22px;
  height: 22px;
}

.emp-valor h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.emp-valor p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ─── TRAJETÓRIA (timeline) ─── */
.emp-timeline {
  position: relative;
  padding-left: 28px;
}

.emp-timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--electric), rgba(0, 207, 255, 0.1));
}

.emp-tl-item {
  position: relative;
  padding: 0 0 32px 34px;
}

.emp-tl-item:last-child {
  padding-bottom: 0;
}

.emp-tl-dot {
  position: absolute;
  left: -22px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--electric);
  box-shadow: 0 0 10px rgba(0, 207, 255, 0.6);
}

.emp-tl-when {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.emp-tl-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.emp-tl-body p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 640px;
}

/* ─── COMPROMISSOS (números) ─── */
#emp-numeros {
  background: linear-gradient(180deg, rgba(0, 207, 255, 0.03), transparent);
}

.emp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.emp-stat {
  text-align: center;
  padding: 30px 18px;
  background: rgba(10, 24, 41, 0.5);
  border: 1px solid rgba(0, 207, 255, 0.12);
}

.emp-stat .stat-num {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 10px;
}

.emp-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── CTA ─── */
#emp-cta {
  text-align: center;
}

.emp-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.emp-cta-inner .section-label {
  justify-content: center;
}

.emp-cta-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.emp-cta-title span {
  color: var(--electric);
}

.emp-cta-text {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
}

.emp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── TEMA CLARO: superfícies dos cards ─── */
body.light-theme .emp-hero-card,
body.light-theme .emp-mv-card,
body.light-theme .emp-pilar,
body.light-theme .emp-valor,
body.light-theme .emp-stat {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 111, 159, 0.2);
  box-shadow: 0 10px 28px rgba(13, 27, 46, 0.08);
}

body.light-theme .ehc-brand,
body.light-theme .ehc-item,
body.light-theme .emp-facts li {
  color: #071321;
}

body.light-theme .emp-hero-sub {
  color: #071321;
  opacity: 1;
}

body.light-theme .emp-essencia-text p,
body.light-theme .emp-hero-desc,
body.light-theme .emp-mv-card p,
body.light-theme .emp-pilar p,
body.light-theme .emp-valor p,
body.light-theme .emp-tl-body p,
body.light-theme .emp-stat-label,
body.light-theme .emp-cta-text {
  color: #334D68;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 900px) {
  .emp-hero-inner,
  .emp-essencia-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .emp-essencia-visual {
    order: -1;
  }

  .emp-pilares-grid,
  .emp-valores-grid {
    grid-template-columns: 1fr 1fr;
  }

  .emp-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  #emp-hero,
  #emp-essencia,
  #emp-mv,
  #emp-pilares,
  #emp-valores,
  #emp-trajetoria,
  #emp-numeros,
  #emp-cta {
    padding: 60px 6%;
  }

  #emp-hero {
    padding-top: 110px;
  }

  .emp-mv-grid,
  .emp-pilares-grid,
  .emp-valores-grid {
    grid-template-columns: 1fr;
  }

  .emp-facts {
    grid-template-columns: 1fr;
  }
}
