/* =============================================================
   CERTA SOLUCOES - Estilos proprios
   ============================================================= */

:root {
  --laranja: #CC6600;
  --laranja-claro: #E07810;
  --laranja-escuro: #B85A00;
  --cinza-escuro: #2C3E50;
  --cinza-meio: #555;
  --cinza-claro: #F5F5F5;
  --branco: #FFFFFF;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background: #FFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  padding: 16px 0;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(44, 62, 80, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.brand-text {
  font-weight: 700;
  font-size: 18px;
  color: #FFF;
  letter-spacing: -0.3px;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin: 0 4px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #FFF;
  background: rgba(255,255,255,0.1);
}
.nav-link.btn-contato {
  background: var(--laranja);
  color: #FFF !important;
}
.nav-link.btn-contato:hover {
  background: var(--laranja-claro) !important;
  color: #FFF !important;
}

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a2530 0%, #2C3E50 60%, #34495E 100%);
  color: #FFF;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(204,102,0,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(74,144,226,0.15) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge i { margin-right: 4px; color: var(--laranja); }
.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-claro) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-cta .btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
}
.btn-laranja {
  background: var(--laranja);
  color: #FFF;
  border: none;
  transition: all 0.2s;
}
.btn-laranja:hover {
  background: var(--laranja-claro);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204,102,0,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
}
.hero-mockup-card {
  background: #FFF;
  border-radius: 20px;
  padding: 50px 40px 36px;
  text-align: center;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  animation: float 6s ease-in-out infinite;
  max-width: 420px;
  margin: 0 auto;
}
.hero-mockup-card::before {
  content: '';
  position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  background: linear-gradient(135deg, var(--laranja) 0%, transparent 50%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.5;
}
.hero-gestor-logo {
  max-width: 280px;
  width: 100%;
  margin-bottom: 18px;
}
.hero-mockup-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--cinza-escuro);
  letter-spacing: -0.3px;
}
.hero-mockup-sub {
  font-size: 13px;
  color: var(--cinza-meio);
  margin-top: 4px;
  font-weight: 500;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  animation: bounce 2s infinite;
  z-index: 3;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* =============================================================
   SECTIONS COMUNS
   ============================================================= */
.section-tag {
  display: inline-block;
  color: var(--laranja);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--cinza-escuro);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 16px;
  color: var(--cinza-meio);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================================
   PRODUTO
   ============================================================= */
.produto-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #FFF 0%, #F5F7FA 100%);
}
.produto-logo {
  max-width: 280px;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.15));
}
.produto-section .lead {
  font-size: 18px;
  color: var(--cinza-escuro);
  margin-bottom: 16px;
}
.produto-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat {
  border-left: 3px solid var(--laranja);
  padding-left: 16px;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--cinza-escuro);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--cinza-meio);
  font-weight: 500;
  margin-top: 6px;
}

/* =============================================================
   RECURSOS
   ============================================================= */
.recursos-section {
  padding: 100px 0;
  background: #FFF;
}
.recurso-card {
  background: #FFF;
  border: 1px solid #EAEAEA;
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.recurso-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,102,0,0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.recurso-card:hover {
  border-color: var(--laranja);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.recurso-card:hover::before { opacity: 1; }
.recurso-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-claro) 100%);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #FFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.recurso-card h5 {
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.recurso-card p {
  color: var(--cinza-meio);
  font-size: 14px;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* =============================================================
   DIFERENCIAIS
   ============================================================= */
.diferenciais-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C3E50 0%, #1a2530 100%);
  color: #FFF;
}
.diferenciais-section .section-title { color: #FFF; }
.diferenciais-section .section-tag { color: var(--laranja-claro); }
.dif-item {
  padding: 24px;
  border-left: 3px solid var(--laranja);
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s;
}
.dif-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.dif-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--laranja-claro);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.dif-item h6 {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
  color: #FFF;
}
.dif-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.55;
}

/* =============================================================
   SOBRE
   ============================================================= */
.sobre-section {
  padding: 100px 0;
  background: #FFF;
}
.sobre-section p {
  color: var(--cinza-meio);
  font-size: 16px;
  margin-bottom: 16px;
}
.sobre-tags {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tag-pill {
  background: #F5F7FA;
  color: var(--cinza-escuro);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #E0E0E0;
}
.tag-pill i { color: var(--laranja); margin-right: 6px; }
.sobre-card {
  background: linear-gradient(135deg, var(--laranja) 0%, var(--laranja-escuro) 100%);
  color: #FFF;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 20px 40px rgba(204,102,0,0.25);
}
.sobre-card-icon {
  font-size: 48px;
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}
.sobre-quote {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 16px;
  font-style: italic;
}
.sobre-quote-author {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  font-weight: 500;
}

/* =============================================================
   CONTATO
   ============================================================= */
.contato-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F5F7FA 0%, #FFF 100%);
}
.contato-card {
  display: block;
  background: #FFF;
  padding: 36px 24px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  height: 100%;
  border: 1px solid #EAEAEA;
  transition: all 0.3s;
}
.contato-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--laranja);
  color: inherit;
}
.contato-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #FFF;
  margin-bottom: 16px;
}
.contato-card h6 {
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 6px;
}
.contato-card p {
  color: var(--cinza-meio);
  font-size: 14px;
  margin-bottom: 12px;
}
.contato-cta {
  display: inline-block;
  color: var(--laranja);
  font-size: 13px;
  font-weight: 600;
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #1a2530;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-text {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.7;
}
.footer-title {
  color: #FFF;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li { margin-bottom: 8px; }
.footer-list a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-list a:hover { color: var(--laranja-claro); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 18px;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--laranja);
  transform: translateY(-2px);
}
.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 40px 0 20px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding-bottom: 60px; }
  .hero-content { padding-top: 110px; padding-bottom: 60px; }
  .hero-cta .btn { display: block; margin-bottom: 12px; width: 100%; }
  .hero-cta .btn.me-2 { margin-right: 0 !important; }
  .navbar { background: rgba(44, 62, 80, 0.98); }
  .navbar-nav { padding-top: 12px; }
  .produto-stats { gap: 20px; }
  .stat-num { font-size: 28px; }
  .sobre-card { padding: 28px; }
  .sobre-quote { font-size: 18px; }
}

@media (max-width: 575px) {
  .recurso-card { padding: 20px; }
  .hero-badge { font-size: 11px; }
  section { padding-left: 12px; padding-right: 12px; }
}
