* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #f9fafe;
  color: #1f2937;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1e3a8a;
  letter-spacing: -0.5px;
}
.logo span {
  color: #f97316;
  font-weight: 600;
}
.slogan {
  font-size: 0.8rem;
  color: #4b5563;
  margin-top: 4px;
}

/* Navegação Desktop */
.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: #f97316;
}
.btn-whatsapp-nav {
  background-color: #25d366;
  color: white !important;
  padding: 8px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.btn-whatsapp-nav:hover {
  background-color: #128c7e;
  transform: scale(1.02);
}

/* Menu Mobile */
.mobile-menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #1e3a8a;
}
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 20px 0;
    gap: 20px;
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-menu-icon {
    display: block;
  }
  .header-content {
    flex-wrap: wrap;
  }
}

/* Botões gerais */
.btn-primary {
  background-color: #f97316;
  color: white;
  border: none;
  padding: 14px 32px;
  font-weight: bold;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover {
  background-color: #ea580c;
  transform: scale(1.02);
}
.btn-outline {
  background-color: transparent;
  border: 2px solid #f97316;
  color: #f97316;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}
.btn-outline:hover {
  background-color: #f97316;
  color: white;
}

/* Seções */
section {
  padding: 70px 0;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 32px;
  color: #1e3a8a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #f97316;
  border-radius: 4px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  padding: 60px 0;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}
.hero-highlight {
  color: #f97316;
}
.hero-content p {
  font-size: 1.2rem;
  color: #334155;
  margin: 20px 0;
}
.hero-stats {
  flex: 0.8;
  background: white;
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Diferenciais */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.card-diff {
  background: white;
  padding: 28px 20px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.card-diff i {
  font-size: 2.5rem;
  color: #f97316;
  margin-bottom: 16px;
}
.card-diff h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* Serviços cards */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
.servico-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.servico-card:hover {
  transform: translateY(-5px);
}
.servico-icon {
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-bottom: 12px;
}
.servico-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.btn-wa-small {
  margin-top: 20px;
  background-color: #25d366;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.btn-wa-small:hover {
  background-color: #128c7e;
}

/* Formulário */
.form-container {
  background: white;
  padding: 36px;
  border-radius: 32px;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 28px;
  font-size: 1rem;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.whatsapp-number-box {
  margin-top: 25px;
  text-align: center;
  background: #ecfdf5;
  padding: 15px;
  border-radius: 60px;
}

/* footer */
footer {
  background-color: #0f172a;
  color: #cbd5e1;
  padding: 48px 0 24px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}
.footer-social a {
  color: white;
  font-size: 1.8rem;
  margin-right: 20px;
  transition: 0.2s;
}
.footer-social a:hover {
  color: #f97316;
}
.copyright {
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 24px;
  font-size: 0.85rem;
}

/* Blog preview */
.blog-preview {
  background: #f1f5f9;
  border-radius: 32px;
  padding: 30px;
  margin-top: 50px;
}
.blog-preview h3 {
  font-size: 1.6rem;
  color: #1e3a8a;
}
.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}
.blog-card {
  background: white;
  padding: 20px;
  border-radius: 24px;
  flex: 1;
  min-width: 200px;
}
.blog-card a {
  color: #f97316;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 680px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .container {
    padding: 0 20px;
  }
  .form-container {
    padding: 24px;
  }
}
