/* ================================
   HOME PREMIUM SUPER CELL
================================= */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* CONTÊINER PADRÃO */
section {
  padding: 80px 20px;
}

section > * {
  max-width: 1100px;
  margin: 0 auto;
}

/* ================================
   HERO
================================= */

.sc-hero {
  background: linear-gradient(135deg, #0A0F1C, #111827);
  color: #fff;
  text-align: center;
  padding: 140px 20px;
}

.sc-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sc-hero p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.sc-hero-buttons a {
  display: inline-block;
  background: linear-gradient(135deg, #0A84FF, #0040C9);
  color: #fff;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(10,132,255,0.35);
  transition: 0.3s ease;
}

.sc-hero-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(10,132,255,0.45);
}

/* ================================
   SEÇÃO LIGHT
================================= */

.sc-section-light {
  background: #f8fafc;
}

/* ================================
   CARDS SERVIÇOS
================================= */

.sc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 30px;
}

.sc-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.sc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ================================
   DIFERENCIAIS
================================= */

.sc-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  text-align: center;
  font-size: 18px;
}

/* ================================
   NÚMEROS
================================= */

.sc-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: center;
  margin-top: 40px;
}

.sc-numbers h3 {
  font-size: 48px;
  color: #0A84FF;
  margin-bottom: 10px;
}

/* ================================
   MAPA
================================= */

.sc-map iframe {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ================================
   BOTÃO PADRÃO
================================= */

.sc-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0A84FF, #0040C9);
  color: #fff;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s ease;
}

.sc-btn:hover {
  transform: translateY(-3px);
}

/* ================================
   CTA FINAL
================================= */

.sc-cta-final {
  background: linear-gradient(135deg, #0A0F1C, #0F172A);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.sc-cta-final a {
  display: inline-block;
  background: linear-gradient(135deg, #0A84FF, #0040C9);
  color: #fff;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
}

/* ================================
   RESPONSIVO
================================= */

@media (max-width: 768px) {

  .sc-hero h1 {
    font-size: 28px;
  }

  .sc-hero p {
    font-size: 16px;
  }

  .sc-numbers {
    gap: 30px;
  }

  .sc-numbers h3 {
    font-size: 32px;
  }

  section {
    padding: 60px 20px;
  }
}