/* mvp/site/css/styles.css - Design System Syncro Auto (SaasPal Style para Estética Automotiva) */

:root {
  --primary: #2C3E50;       /* Azul Grafite Soberano */
  --primary-dark: #1E2B3C;  /* Azul Grafite Profundo */
  --secondary: #ECF0F1;    /* Cinza Claro Superfície */
  --accent: #1ABC9C;       /* Verde Água Elétrico / Brilho */
  --accent-hover: #16A085;
  --accent-blue: #1ABC9C;  /* Usando o mesmo Verde Água para manter a unidade visual */
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --card-bg: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --gradient-brand: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
  --gradient-dark: linear-gradient(135deg, #1E2B3C 0%, #2C3E50 100%);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(26, 188, 156, 0.3);
}

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAVBAR HEADER */
.navbar-syncro {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  transition: all 0.3s ease;
  z-index: 1050 !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.brand-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(0, 210, 160, 0.3);
}

.nav-link-custom {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}

.nav-link-custom:hover, .nav-link-custom.active {
  color: var(--accent-blue);
}

.btn-cta-nav {
  background: var(--gradient-brand);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0, 210, 160, 0.3);
  transition: all 0.25s ease;
  border: none;
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 210, 160, 0.45);
}

.btn-login-outline {
  border: 2px solid var(--border-color);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-login-outline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

/* HERO SECTION (SaasPal Style) */
.hero-section {
  padding: 120px 0 80px 0;
  background: radial-gradient(circle at top right, rgba(0, 210, 160, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(2, 132, 199, 0.08), transparent 50%);
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 210, 160, 0.12);
  color: #00a37b;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 210, 160, 0.25);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-mockup-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 10px;
  background: var(--gradient-dark);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: heroFloat 6s ease-in-out infinite;
}

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

.hero-mockup-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.floating-card-badge.top-right {
  top: -20px;
  right: -20px;
}

.floating-card-badge.bottom-left {
  bottom: -20px;
  left: -20px;
}

/* CARDS DE RECURSOS */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* SEÇÃO DARK (DESTAQUE MANTENÇÃO E CONVERSÃO) */
.section-dark {
  background: var(--gradient-dark);
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.section-dark .text-muted {
  color: #94A3B8 !important;
}

/* CALCULADORA DE ROI */
.roi-calculator-box {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.roi-slider {
  width: 100%;
  accent-color: var(--accent);
}

.roi-result-card {
  background: rgba(0, 210, 160, 0.1);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
}

.roi-result-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #00a37b;
}

/* TABELA DE PREÇOS */
.pricing-card {
  background: #ffffff;
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.popular {
  border-color: var(--accent-blue);
  box-shadow: 0 15px 40px rgba(2, 132, 199, 0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gradient-brand);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 20px 0;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FOOTER INSTITUCIONAL */
.footer-syncro {
  background: var(--primary-dark);
  color: #94A3B8;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

/* PLACEHOLDERS DE PRINTS (IMAGENS) */
.print-placeholder {
  width: 100%;
  height: 100%;
  min-height: 250px;
  background: rgba(30, 43, 60, 0.6);
  border: 1px dashed rgba(26, 188, 156, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.print-placeholder.hero-size {
  min-height: 400px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  background: var(--primary-dark);
}
.print-placeholder:hover {
  background: rgba(30, 43, 60, 0.9);
  border-color: var(--accent);
}

/* RESPONSIVIDADE NAVBAR MOBILE */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
  }
  
  .navbar-collapse .d-flex {
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 10px !important;
  }

  .navbar-collapse .btn-login-outline,
  .navbar-collapse .btn-cta-nav {
    width: 100%;
    text-align: center;
    display: block;
  }
}
