:root {
  --navy: #0f3d5c;
  --blue: #1a5f8a;
  --sky: #4db8e8;
  --slate: #5c7f94;
  --green: #22c55e;
  --bg-light: #f5f8fa;
  --white: #ffffff;
  --text: #1e293b;
  --text-soft: #5b6b76;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(15, 61, 92, 0.08);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@font-face {
  font-family: 'Mon';
  src: url(/assets/Fonts/Montserrat/static/Montserrat-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'bol';
  src: url(/assets/Fonts/Montserrat/static/Montserrat-Bold.ttf) format('truetype');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:"Mon";
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.2;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}
.section-title-left {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 40px;
}
.text-accent {
  color: var(--sky);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--slate);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1eb857;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}
.btn-block {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.img-placeholder {
  background: linear-gradient(135deg, #dbeafe, #bbf7d0);
  position: relative;
  min-height: 200px;
}
.img-placeholder::after {
  content: "Espacio para imagen";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}