:root {
  --bs-primary: #de2b23;
  --bs-primary-rgb: 222, 43, 35;
  --bs-link-color: #de2b23;
  --bs-link-hover-color: #c8231d;
  --brand-red-dark: #c8231d;
  --bs-body-font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-primary {
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-bg: #c8231d;
  --bs-btn-hover-border-color: #c8231d;
  --bs-btn-active-bg: #b71f1a;
  --bs-btn-active-border-color: #b71f1a;
}

html { scroll-behavior: smooth; }

.topbar {
  background: var(--brand-red-dark);
  height: 86px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  z-index: 1030;
}

.logo { height: 58px; width: auto; }

.section-title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 400;
  margin-bottom: 22px;
}

.section-title strong { font-weight: 900; }

.hero { margin-top: 86px; }

.hero-slide {
  height: 705px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  padding-top: 180px;
  padding-bottom: 80px;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.92;
  margin-bottom: 32px;
}

/* Bootstrap carousel dots em estilo brand */
.carousel-indicators [data-bs-target] {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background-color: rgba(255, 255, 255, 0.42);
  margin: 0 6px;
  opacity: 1;
}

.carousel-indicators .active { background-color: #fff; }

.intro-visual {
  border-radius: 0 0 0 90px;
  overflow: hidden;
  background: #f1f1f1;
}

.intro-visual img:first-child {
  height: 430px;
  object-fit: cover;
}

.intro-brand {
  bottom: 28px;
  right: 28px;
  width: 160px;
  opacity: 0.95;
}

.solution-img { height: 220px; object-fit: cover; }

.benefits li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefits li::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 99px;
  background: var(--bs-primary);
  flex: 0 0 auto;
}

.location { background: var(--brand-red-dark); }

.form-image { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }

.post-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.1);
}

.post-img { height: 210px; object-fit: cover; }

.footer { background: #151515; }
.footer-logo { width: 170px; }
.footer-heading {
  color: #ef3a31;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .topbar { height: 74px; }
  .logo { height: 44px; }
  .hero { margin-top: 74px; }
  .hero-slide { height: 620px; }
  .hero-content { padding-top: 140px; padding-bottom: 60px; }
}
