body {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* HERO */
.hero {
  min-height: 95vh;
  background: url("../img/hero-bomberos-real.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.6)
  );
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 850px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  opacity: .95;
}

/* STATS */
.stats {
  background: #f8f9fa;
  padding: 60px 0;
}

.stats i {
  font-size: 2.4rem;
  color: #dc3545;
}

.stats h3 {
  font-weight: 800;
  margin-top: 10px;
}

/* SERVICES */
.services {
  padding: 80px 0;
  text-align: center;
}

.services h2 {
  font-weight: 800;
}

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-body {
  padding: 20px;
}

.service-body h5 {
  color: #dc3545;
  font-weight: 700;
}

/* CONTACT */
.contact {
  background: #111;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 30px auto 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: none;
}

.contact-form button {
  background: #dc3545;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-weight: 700;
  border-radius: 8px;
}

/* PRIVACY POLICY */
.policy-hero {
  min-height: 58vh;
  padding: 130px 0 70px;
  background: url("../img/hero-bomberos-real.jpg") center/cover no-repeat;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .55));
}

.policy-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 16px;
}

.policy-hero h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 800;
  max-width: 780px;
}

.policy-hero p {
  font-size: 1.15rem;
  max-width: 720px;
  opacity: .95;
}

.policy-logo {
  width: min(250px, 58vw);
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, .45));
}

.policy-page {
  background: #f5f6f8;
}

.policy-intro {
  padding: 34px 0 0;
}

.policy-notice {
  background: #fff4e5;
  border-left: 5px solid #dc3545;
  color: #2b2b2b;
  padding: 18px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.policy-content {
  padding: 34px 0 70px;
}

.policy-summary,
.policy-document {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.policy-summary {
  padding: 24px;
  position: sticky;
  top: 92px;
}

.policy-summary h2,
.policy-document h2 {
  color: #b91c1c;
  font-weight: 800;
}

.policy-summary ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.policy-document {
  padding: clamp(24px, 4vw, 42px);
}

.policy-document section + section {
  border-top: 1px solid rgba(20, 20, 20, .08);
  margin-top: 28px;
  padding-top: 28px;
}

.policy-document p,
.policy-document li {
  color: #30343b;
  line-height: 1.75;
}

.policy-document a {
  color: #b91c1c;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .policy-summary {
    position: static;
  }
}
