/* =====================================================
   MAIS CORPORATIVO — Landing Page (Versão Mínima)
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:    #060F1F;
  --blue-dark:    #0B1A2E;
  --blue-accent:  #122040;
  --orange-main:  #F86C00;
  --orange-light: #FF8C2A;
  --orange-glow:  rgba(248, 108, 0, 0.15);
  --white:        #FFFFFF;
  --text-muted:   #8DA4BF;
  --text-body:    #B8CCE0;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg:     rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shine:  rgba(255, 255, 255, 0.06);
  --card-bg:      rgba(255, 255, 255, 0.04);
  --font-main:    'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --radius:       16px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--blue-dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-dark); }
::-webkit-scrollbar-thumb { background: var(--orange-main); border-radius: 3px; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--orange-main), #E55A00);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 140, 42, 0.4);
  cursor: pointer;
  transition: var(--transition);
  box-shadow:
    0 4px 20px rgba(248,108,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 120%; }
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange-main));
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(248,108,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* === LABELS & TITLES === */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-main);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--orange-main);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
}

.highlight { color: var(--orange-main); }

.gradient-text {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-light), #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  /* Glass sempre ativo */
  background: rgba(6, 15, 31, 0.55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 4px 32px rgba(0,0,0,0.3),
    inset 0 1px 0 var(--glass-shine);
}
.navbar.scrolled {
  background: rgba(6, 15, 31, 0.8);
  border-bottom-color: rgba(248,108,0,0.15);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(248,108,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}
.logo:hover .logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(248,108,0,0.6));
}

.btn-nav {
  padding: 0.6rem 1.25rem;
  background: rgba(248,108,0,0.15);
  color: var(--orange-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  border: 1px solid rgba(248,108,0,0.35);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(248,108,0,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-nav:hover {
  background: var(--orange-main);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(248,108,0,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  border-color: transparent;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(30,64,128,0.45) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(248,108,0,0.05) 0%, transparent 60%),
    var(--blue-deep);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(248,108,0,0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange-light);
  background: rgba(248,108,0,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 24px rgba(248,108,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--orange-main);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-main);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.75;
}
.hero-subtitle strong { color: var(--orange-light); font-weight: 600; }

/* === CONTATO === */
.contato {
  padding: 6rem 0;
  background: var(--blue-dark);
  border-top: 1px solid var(--border-color);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contato-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: inherit;
  transition: var(--transition);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.2),
    inset 0 1px 0 var(--glass-shine);
  position: relative;
  overflow: hidden;
}
/* reflexo interno no topo */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.contact-card:hover {
  border-color: rgba(248,108,0,0.45);
  background: rgba(248,108,0,0.08);
  transform: translateX(6px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.3),
    -4px 0 0 var(--orange-main),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.contact-icon {
  width: 46px; height: 46px;
  background: var(--orange-glow);
  border: 1px solid rgba(248,108,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-main);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-value {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

/* === FOOTER === */
.footer {
  padding: 2rem 0;
  background: rgba(6,15,31,0.7);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 var(--glass-shine);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* === HERO SCROLL INDICATOR === */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--orange-main), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.35s; }
.reveal-d4 { transition-delay: 0.5s; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero { padding: 7rem 0 4rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}
