/* ========================================
   MANUTENÇÃO DE SITE - CORES DO SITE
   ======================================== */
:root {
  --primary-color: #FF4000;
  --secondary-color: #FF8C00;
  --tertiary-color: #FFB347;
  --dark-bg: #0a0a0a;
  --light-text: #ffffff;
  --muted-text: #b0b0b0;
  --success: #00ff88;
  --border-color: rgba(255, 64, 0, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========================================
   SEÇÃO PRINCIPAL
   ======================================== */
.manutencao-site {
  width: 100%;
  background: #000000;
  color: var(--light-text);
  overflow: hidden;
  position: relative;
}

.manutencao-site::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 64, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 64, 0, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ========================================
   HERO SECTION COM FORMULÁRIO
   ======================================== */
.manutencao-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #000000;
  margin-top: 100px;
}

/* Efeitos de fundo animados */
.manutencao-hero::before {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 64, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseHero 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseHero {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.6; }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Conteúdo Esquerdo */
.hero-content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slideIn 1s ease forwards;
}

.hero-content-left h2 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.hero-content-left h2 .highlight {
  background: linear-gradient(135deg, #FF4000, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 64, 0, 0.6));
}

.hero-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 64, 0, 0.3);
  border-radius: 50px;
  padding: 0.8rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--light-text);
  background: rgba(255, 64, 0, 0.08);
  transition: var(--transition);
}

.feature-badge:hover {
  background: rgba(255, 64, 0, 0.15);
  border-color: rgba(255, 64, 0, 0.6);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-explorar {
  display: inline-block;
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-explorar:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* ========================================
   FORMULÁRIO LADO DIREITO - ESTILO CONTADOR
   ======================================== */
.hero-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 1s ease forwards;
}

.hero-form-card {
  background: #1a1a1a;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 64, 0, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-form-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 64, 0, 0.6);
  box-shadow: 0 30px 80px rgba(255, 64, 0, 0.3);
}

/* Borda animada no hover */
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #FF4000, #FF8C00, #FF4000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-form-card:hover::before {
  opacity: 1;
}

.hero-form-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-form-card > p {
  text-align: center;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 64, 0, 0.3);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: #FF4000;
  box-shadow: 0 0 0 3px rgba(255, 64, 0, 0.1);
}

.btn-enviar-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #FF4000, #FF8C00);
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  box-shadow: 0 8px 25px rgba(255, 64, 0, 0.4);
  position: relative;
  z-index: 1;
}

.btn-enviar-form:hover {
  background: linear-gradient(135deg, #FF5500, #FF9500);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 64, 0, 0.6);
}

.btn-enviar-form i {
  font-size: 1.1rem;
}

.form-disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVO - DESKTOP/TABLET
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content-left h2 {
    font-size: 2.2rem;
  }

  .hero-form-card {
    padding: 2rem;
  }
}

/* ========================================
   RESPONSIVO - MOBILE
   ======================================== */
@media (max-width: 768px) {
.manutencao-hero {
    padding: 0.5rem 1.5rem 2rem 1.5rem;  /* Reduzir muito o padding top */
    margin-top: 10px;                     /* Reduzir o margin-top */
    min-height: auto;
    padding-top: 0.5rem;                  /* Reduzir o padding-top */
}

  .hero-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-content-left h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .feature-badge {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero-form-card {
    padding: 1.5rem;
  }

  .hero-form-card h3 {
    font-size: 1.4rem;
  }

  .btn-enviar-form {
    padding: 0.85rem;
    font-size: 0.9rem;
  }
}

/* ========================================
   RESPONSIVO - CELULAR PEQUENO
   ======================================== */
@media (max-width: 480px) {
  .manutencao-hero {
    padding: 2rem 1rem 2rem 1rem;
    margin-top: -10px;
  }

  .hero-container {
    gap: 1rem;
  }

  .hero-content-left h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   SEÇÕES
   ======================================== */
.manutencao-section {
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.manutencao-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
  color: var(--light-text);
  font-weight: 700;
}

.manutencao-section h2 .highlight {
  background: linear-gradient(135deg, #FF4000, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   POR QUÊ - MOTIVOS
   ======================================== */
.por-que {
  background: #000000;
}

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.motivo-card {
  background: rgba(255, 64, 0, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.motivo-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  background: rgba(255, 64, 0, 0.1);
  box-shadow: 0 20px 40px rgba(255, 64, 0, 0.2);
}

.motivo-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.motivo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

.motivo-card p {
  color: var(--muted-text);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========================================
   PROCESSOS INTERATIVOS
   ======================================== */

.processos {
  background: #000000;
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
}

/* Grid de fundo animado (igual aos contadores) */
.processos::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 64, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  animation: floatCounter 15s ease-in-out infinite;
}

.processos::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -250px;
  left: -150px;
  animation: floatCounter 20s ease-in-out infinite reverse;
}

@keyframes floatCounter {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 30px) scale(1.05); }
}

.processos-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Card do processo - IDÊNTICO AO CONTADOR */
.processo-card {
  background: #1a1a1a;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 64, 0, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpCounter 0.8s ease forwards;
}

.processo-card:nth-child(1) { animation-delay: 0.1s; }
.processo-card:nth-child(2) { animation-delay: 0.2s; }
.processo-card:nth-child(3) { animation-delay: 0.3s; }
.processo-card:nth-child(4) { animation-delay: 0.4s; }
.processo-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideUpCounter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover */
.processo-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 64, 0, 0.5);
  background: #252525;
  border-color: rgba(255, 64, 0, 0.8);
}

/* Borda animada no hover */
.processo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #FF4000, #FF8C00, #FF4000);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.processo-card:hover::before {
  opacity: 1;
}

/* Número do processo - GRANDE E LARANJA */
.processo-numero {
  position: static;
  font-size: 3.5rem;
  font-weight: 700;
  color: #FF4000;
  z-index: 1;
  margin: 1rem 0;
  line-height: 1;
  background: linear-gradient(135deg, #FF4000, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Linha divisória - LARANJA */
.processo-line_modern {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FF4000, transparent);
  margin: 15px auto 20px;
  border-radius: 2px;
}

/* Header com linha */
.processo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 1.5rem 0;
  cursor: pointer;
  user-select: none;
  width: 100%;
  order: 2;
}

.processo-header h3 {
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  order: 1;
}

.processo-toggle {
  display: none;
}

/* Conteúdo visível */
.processo-content {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  border-radius: 0;
  padding: 1.5rem 0 0 0;
  margin-top: 1.5rem;
  width: 100%;
}

.processo-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.processo-lista li {
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  transition: var(--transition);
  margin-left: 2rem;
}

.processo-lista li:before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #FF4000;
  background: transparent;
  transition: var(--transition);
  box-shadow: 0 0 8px rgba(255, 64, 0, 0.4);
}

.processo-card:hover .processo-lista li:before {
  background: #FF4000;
  box-shadow: 0 0 16px rgba(255, 64, 0, 0.7);
  border-color: #FF8C00;
}

.processo-card.ativo .processo-lista li {
  color: #FFFFFF;
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
  .processos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
  .processos {
    padding: 3rem 1.5rem !important;
  }

  .processos-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .processo-card {
    padding: 1.5rem;
  }

  .processo-numero {
    font-size: 2.5rem;
  }

  .processo-header h3 {
    font-size: 0.9rem;
  }

  .processo-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* ========================================
   BENEFÍCIOS
   ======================================== */
.beneficios {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 40%, #0a0a0a 100%);
}

.beneficios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  grid-auto-flow: dense;
}

.beneficio-item {
  background: linear-gradient(135deg, rgba(255, 64, 0, 0.08) 0%, rgba(255, 64, 0, 0.03) 100%);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.beneficio-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(255, 64, 0, 0.15);
}

.beneficio-numero {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255, 64, 0, 0.2);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.beneficio-item h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.beneficio-item p {
  color: var(--muted-text);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

/* ========================================
   FREQUÊNCIA
   ======================================== */
.frequencia {
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 40%, #0a0a0a 100%);
  border-top: 2px solid var(--border-color);
  position: relative;
}

.frequencia-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.frequencia-card {
  background: linear-gradient(135deg, rgba(255, 64, 0, 0.08) 0%, rgba(255, 64, 0, 0.02) 100%);
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.frequencia-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
}

.frequencia-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 64, 0, 0.15);
}

.frequencia-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.frequencia-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.frequencia-card li {
  color: var(--muted-text);
  padding: 0.8rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.5;
  border-left: 2px solid transparent;
  transition: var(--transition);
}

.frequencia-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(0, 255, 136, 0.6);
  font-weight: bold;
  transition: var(--transition);
}

.frequencia-card:hover li {
  color: var(--light-text);
  padding-left: 2rem;
  border-left-color: rgba(0, 255, 136, 0.6);
}

.frequencia-card:hover li::before {
  color: #00ff88;
  opacity: 1;
}

/* ========================================
   CALL TO ACTION
   ======================================== */
.cta-final {
  text-align: center;
  background: #000000;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.cta-content h2 .highlight {
  background: linear-gradient(135deg, #FF4000, #FF8C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--muted-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-manutencao {
  padding: 0.9rem 2rem;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 64, 0, 0.5);
  letter-spacing: 2px;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}