/* ========================
   SETUP & VARIÁVEIS
   ======================== */
:root {
  --color-bg: #020b14; /* Azul Marinho Profundo */
  --color-card: rgba(10, 30, 50, 0.6);
  --color-nova-blue: #004aad;
  --color-bio-green: #00c853; /* Verde Vibrante */
  --color-text: #ffffff;
  --color-text-muted: #94a3b8;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg); /* Garante o fundo escuro */
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* ========================
   BACKGROUND ANIMADO
   ======================== */
.bg-animation {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--color-bg);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 10s infinite alternate;
}

.orb-1 {
  width: 400px; height: 400px;
  background: var(--color-nova-blue);
  top: -100px; left: -100px;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--color-bio-green);
  bottom: -50px; right: -50px;
  animation-delay: -5s;
}

.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: 40px 40px;
  mask-image: radial-gradient(circle, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 40%, transparent 100%);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* ========================
   LAYOUT PRINCIPAL
   ======================== */
.maintenance-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.content-wrapper {
  max-width: 1100px; /* Aumentei para caber as logos lado a lado */
  width: 100%;
  padding: 3rem 0;
}

/* Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  color: var(--color-bio-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(0, 200, 83, 0.2);
  margin-bottom: 2rem;
}

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--color-bio-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(0, 200, 83, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}

/* Tipografia */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, var(--color-bio-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* ========================
   GRID DAS MARCAS (CORRIGIDO)
   ======================== */
.brands-showcase {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.brand-card {
  background: var(--color-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-bio-green);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.brand-card.featured {
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Logo Wrapper - Fundo Branco Controlado */
.logo-wrapper {
  width: 100%;
  height: 220px;
  background: #ffffff; /* Fundo branco para as imagens JPG */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* Blend mode ajuda a tirar o fundo branco visualmente se o container for branco */
  mix-blend-mode: multiply; 
}

/* Conteúdo de Texto do Card (Dark) */
.card-content {
  padding: 1.5rem;
  width: 100%;
  background: rgba(0,0,0,0.2);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #fff;
  font-weight: 600;
}

.brand-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================
   FORMULÁRIO & FOOTER
   ======================== */
.notify-section {
  margin-top: 2rem;
}
.notify-section p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.notify-form {
  display: flex;
  gap: 10px;
  max-width: 450px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  outline: none;
}

.notify-form button {
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, var(--color-nova-blue), #0060df);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.simple-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #556;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.socials a { color: #778; text-decoration: none; }
.socials a:hover { color: var(--color-bio-green); }

/* Responsivo */
@media (max-width: 900px) {
  .brands-showcase {
    flex-direction: column;
    align-items: center;
  }
  .brand-card { width: 100%; max-width: 320px; }
  .brand-card.featured { transform: scale(1); order: -1; }
  .notify-form { flex-direction: column; }
}