/* ========================================
   ETHOS 2.0 – CLEAN DESIGN SYSTEM
======================================== */

/* =========================
   VARIÁVEIS
========================= */
:root {

  --ethos-primary: #0F3C3C;
  --ethos-secondary: #176868;
  --ethos-accent: #D4AF37;

  --ethos-bg: #FFFFFF;
  --ethos-bg-soft: #F5F8F8;
  --ethos-border: #E4ECEC;

  --ethos-text: #1C2B2B;
  --ethos-text-light: #5F6F6F;

  --ethos-radius: 14px;

  --ethos-shadow-soft: 0 8px 30px rgba(15, 60, 60, 0.06);
}

/* =========================
   BASE
========================= */

body {
  font-family: 'Inter', sans-serif;
  background: var(--ethos-bg);
  color: var(--ethos-text);
  -webkit-font-smoothing: antialiased;
}

section {
  padding: 100px 0;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.3px;
}

p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ethos-text-light);
}

/* =========================
   HEADER
========================= */

.header {
  background: #fff;
  border-bottom: 1px solid var(--ethos-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.navmenu a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* =========================
   BOTÕES
========================= */

.btn-ethos-primary {
  background: var(--ethos-primary);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-ethos-primary:hover {
  background: var(--ethos-secondary);
  transform: translateY(-2px);
}

.btn-ethos-outline {
  border: 2px solid var(--ethos-primary);
  color: var(--ethos-primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-ethos-outline:hover {
  background: var(--ethos-primary);
  color: white;
}

/* =========================
   HERO
========================= */

.hero-clean {
  background: linear-gradient(135deg, #F7FAFA 0%, #FFFFFF 100%);
  padding: 120px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(23, 104, 104, 0.08);
  color: var(--ethos-secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--ethos-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  max-width: 520px;
}

/* ================================
   HERO VISUAL - DASHBOARD PREMIUM
================================ */

.ethos-dashboard {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card Central - Coração do Sistema */
.dashboard-central {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(145deg, #124F4F, #1A6A6A);
  border-radius: 30px;
  box-shadow: 
    0 30px 60px -15px rgba(18,79,79,0.4),
    0 0 0 2px rgba(255,255,255,0.5) inset,
    0 0 0 4px rgba(18,79,79,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 10;
  animation: floatCentral 6s ease-in-out infinite;
}

@keyframes floatCentral {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.central-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.2);
}

.central-icon i {
  font-size: 30px;
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.dashboard-central h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: white;
  letter-spacing: 1px;
}

.central-stats {
  display: flex;
  gap: 20px;
}

.central-stats .stat {
  text-align: center;
}

.central-stats .stat-value {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #FFD966;
  line-height: 1;
}

.central-stats .stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #FFD966;   /* mesma cor do número */
  font-weight: 600;
  opacity: 1;
}

/* Cards Orbitais */
.orbital-card {
  position: absolute;
  width: 170px;
  background: white;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.15);
  border: 1px solid rgba(18,79,79,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: orbitFloat 6s ease-in-out infinite;
  z-index: 5;
  backdrop-filter: blur(5px);
}

.orbital-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 30px 60px -15px rgba(18,79,79,0.3);
  border-color: #124F4F;
}

/* Animações individuais */
.orbital-card.cadastro {
  top: 20px;
  left: 0;
  animation-delay: 0s;
}

.orbital-card.interface {
  top: 20px;
  right: 0;
  animation-delay: 0.2s;
}

.orbital-card.integracao {
  bottom: 80px;
  left: 0;
  animation-delay: 0.4s;
}

.orbital-card.resultado {
  bottom: 80px;
  right: 0;
  animation-delay: 0.6s;
}

.orbital-card.seguranca {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  animation-delay: 0.8s;
}

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.orbital-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #124F4F10, #1A6A6A10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18,79,79,0.15);
}

.orbital-icon i {
  font-size: 20px;
  color: #124F4F;
}

.orbital-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 3px 0;
  color: #1e293b;
}

.orbital-content p {
  font-size: 11px;
  margin: 0;
  color: #64748b;
  line-height: 1.3;
}

/* Linhas de conexão SVG */
.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.line-path {
  stroke: #124F4F;
  stroke-width: 1.5;
  stroke-dasharray: 5,5;
  animation: dashMove 20s linear infinite;
  opacity: 0.3;
}

@keyframes dashMove {
  to { stroke-dashoffset: -100; }
}

.pulse-dot-center {
  fill: #FFD966;
  animation: pulseCenter 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px #FFD966);
}

@keyframes pulseCenter {
  0%, 100% { r: 4; opacity: 1; }
  50% { r: 8; opacity: 0.5; }
}

/* Partículas flutuantes */
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #124F4F;
  border-radius: 50%;
  opacity: 0.2;
  animation: particleFloat 10s linear infinite;
}

.particle-1 {
  top: 30%;
  left: 20%;
  animation-delay: 0s;
}

.particle-2 {
  top: 60%;
  right: 25%;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.particle-3 {
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
  width: 4px;
  height: 4px;
}

.particle-4 {
  top: 40%;
  right: 15%;
  animation-delay: 6s;
  width: 10px;
  height: 10px;
  background: #FFD966;
  opacity: 0.15;
}

@keyframes particleFloat {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .ethos-dashboard {
    min-height: 600px;
    margin-top: 40px;
  }
  
  .dashboard-central {
    width: 160px;
    height: 160px;
  }
  
  .central-icon {
    width: 40px;
    height: 40px;
  }
  
  .central-icon i {
    font-size: 20px;
  }
  
  .dashboard-central h3 {
    font-size: 18px;
  }
  
  .orbital-card {
    width: 130px;
    padding: 12px;
  }
  
  .orbital-card.cadastro {
    top: 0;
    left: -10px;
  }
  
  .orbital-card.interface {
    top: 0;
    right: -10px;
  }
  
  .orbital-card.integracao {
    bottom: 60px;
    left: -10px;
  }
  
  .orbital-card.resultado {
    bottom: 60px;
    right: -10px;
  }
  
  .orbital-card.seguranca {
    bottom: -30px;
    width: 150px;
  }
}

@media (max-width: 576px) {
  .ethos-dashboard {
    min-height: 500px;
  }
  
  .orbital-card {
    width: 110px;
    padding: 10px;
  }
  
  .orbital-content h4 {
    font-size: 12px;
  }
  
  .orbital-content p {
    font-size: 9px;
  }
}
.dashboard-central::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 30px;
  background: radial-gradient(circle, rgba(18,79,79,0.3) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
.hero-product {
  display: block;
  margin-top: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ethos-primary);
  opacity: 0.75;
}

.hero-authority {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ethos-primary);
  opacity: 0.9;
}
.hero-subtitle {
  font-size: 18px;
  max-width: 520px;
  color: var(--ethos-primary);   /* mesmo verde do texto */
  opacity: 0.85;
  margin-top: 15px;
}
section:not(.hero-clean) {
  padding: 100px 0;
}

.hero-clean {
  padding: 120px 0 100px 0;
}
#hero {
  padding-top: 40px !important;
}


.card-institucional {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(15,60,60,0.06);
  box-shadow: 0 25px 60px rgba(15,60,60,0.05);
  position: relative;
  transition: all 0.3s ease;
}

.card-institucional::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 45px;
  bottom: 45px;
  width: 6px;
  background: linear-gradient(180deg, #0F3C3C, #176868);
  border-radius: 30px;
}

.card-institucional:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(15,60,60,0.12);
}
.card-institucional {
  padding: 45px 45px 45px 60px;
}
/* Ajustes rápidos para versão mais enxuta */
    .section-compact {
      padding: 60px 0;
    }
    .testimonial-compact {
      background: white;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
      border: 1px solid rgba(0,0,0,0.03);
    }
    .stats-badge {
      background: rgba(30,122,122,0.1);
      color: #1E7A7A;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 500;
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 10px;
    }
	
	/* Caixa padrão feedback */
.form-feedback {
  margin-top: 15px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  text-align: center;
}

/* SUCESSO */
.sent-message {
  background: #e6f9f1;
  border: 1px solid #1E7A7A;
  color: #0B2A2A;
}

/* ERRO */
.error-message {
  background: #fdecec;
  border: 1px solid #dc3545;
  color: #842029;
}

/* LOADING */
.loading {
  background: #f1f3f5;
  border: 1px solid #dee2e6;
  color: #495057;
}
.hero-brand {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0F3C3C;
  background: rgba(30,122,122,0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}