/* Geral */
body {
  scroll-behavior: smooth;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75), rgba(0,0,0,0.2));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

/* Navbar */
.navbar-brand span {
  font-size: 1.1rem;
}

.nav-link {
  font-size: 0.95rem;
}

/* Listas com "check" */
.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  color: #0d6efd;
}

/* Cards de diferenciais */
.icon-lg {
  max-width: 72px;
}

/* Serviços */
.service-card {
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 24px 20px;
  background-color: #fff;
}

.service-card h5 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.service-card small {
  font-weight: 400;
  color: #6c757d;
}

.service-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Passo a passo */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #e5e5e5;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Case */
.case-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}

/* Segmentos */
.segment-item {
  padding: 16px 12px;
  background-color: #fff;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  height: 100%;
}

/* Depoimentos */
.testimonial-card {
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  padding: 24px;
  background-color: #fff;
}

/* Formulário */
.form-section .card {
  border-radius: 20px;
}

/* Footer */
.footer {
  padding: 32px 0 24px;
  border-top: 1px solid #e5e5e5;
  background-color: #fafafa;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.whatsapp-icon {
  font-weight: 700;
}

/* Responsividade extra */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
  }
}
