body {
  font-family: Inter, sans-serif;
}

:root {
  --hero-overlay-from: #002366ed;
  --hero-overlay-to: #002366b8;
}


:where(a, button, summary):focus-visible {
  outline: 3px solid #E07856;
  outline-offset: 3px;
  border-radius: 0.25rem;
}

/* Contact form: native select aligned with text inputs */
.contact-form-select-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.contact-form-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.contact-form-select {
  display: block;
  min-width: 0;
  max-width: 100%;
  min-height: 3rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  cursor: pointer;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: #334155;
}

.contact-form-select:not([data-has-value="true"]) {
  color: #94a3b8;
}

.contact-form-select option {
  color: #334155;
}

.contact-form-select option[value=""] {
  color: #64748b;
}

.contact-form-select:focus-visible {
  outline: 3px solid #E07856;
  outline-offset: 2px;
}

@media (max-width: 639px) {
  .contact-form-select {
    font-size: 16px; /* evita zoom automatico en iOS */
  }
}

/* Home FAQ accordion */
.home-faq-summary::-webkit-details-marker {
  display: none;
}

.home-faq-summary::marker {
  content: "";
}

.home-faq-item[open] > .home-faq-summary {
  padding-bottom: 0.85rem;
}

/* Hero image overlay (home + service detail). Alpha ≈ 93% / 72%. */
.hero-overlay {
  background-image: linear-gradient(
    90deg,
    var(--hero-overlay-from),
    var(--hero-overlay-to)
  );
}

