* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

:root {
  --naranja: #EB690B;
  --naranja-dark: #D15E0A;
  --naranja-light: #fce8d8;
  --texto: #1a1a1a;
  --gris: #666;
  --red: #e63946;
  --dark: #0d0d0d;
  --card: #161616;
  --text: #fff;
  --muted: #aaa;
}

html,
body {
  overflow-x: hidden;
}

body {
  color: var(--texto);
  line-height: 1.5;
}

.section-py {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-py--flush-bottom {
  padding-bottom: 0;
}

.section-title {
  position: relative;
  display: block;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 40px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: var(--naranja);
}

.section-title--light {
  color: #fff;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  align-items: start;
}

.u-text-center {
  text-align: center;
}

.u-mt-20 {
  margin-top: 20px;
}

.map-embed {
  position: relative;
}

.map-embed__frame {
  border: 0;
  width: 100%;
  height: 450px;
  background: #e0e0e0;
  display: block;
}

.map-embed__button {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.video-caption {
  margin-top: 10px;
  color: #fff;
  font-size: 14px;
}

.form-promo-wrap {
  display: none;
  margin: 15px 0;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
}

.form-promo-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
  display: none;
}
