:root {
  --color-olive: #5f6f3a;
  --color-olive-dark: #3f4a2a;
  --color-lime: #b6d957;
  --color-lime-soft: #dde8b5;
  --color-soft-green: #eef5e3;
  --color-white: #ffffff;
  --color-text: #2f2f2f;
  --color-muted: #666666;
  --color-bg: #f8faf5;
  --color-border: #e7e7e7;
  --font-base: "Poppins", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-header: 0 12px 28px rgba(23, 28, 18, 0.08);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow: 0.5s ease;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: blur(12px);
  --header-height: 102px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-base);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-container {
  width: min(100% - 88px, 1180px);
  margin-inline: auto;
}

.section-rule {
  display: block;
  width: 45px;
  height: 2px;
  background: var(--color-olive);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(14px);
}

.ev-navbar {
  min-height: var(--header-height);
  padding: 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 28px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 198px;
  height: auto;
}

.nav-content {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.main-menu {
  align-items: center;
  gap: 31px;
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: #151515;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-olive);
}

.nav-link.is-active {
  position: relative;
  color: #111111;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -22px;
  left: 0;
  height: 2px;
  background: var(--color-lime);
}

.menu-caret {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 39px;
  min-width: 75px;
  padding: 0 10px;
  border: 1px solid #b6b8ae;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: #171717;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(63, 74, 42, 0.06);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  border-color: var(--color-olive);
  box-shadow: 0 10px 22px rgba(63, 74, 42, 0.12);
}

.language-option:active {
  transform: translateY(1px);
}

.language-flag {
  font-size: 18px;
  line-height: 1;
}

.ev-navbar-toggler {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(63, 74, 42, 0.08);
}

.ev-navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-olive-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.ev-navbar-toggler.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ev-navbar-toggler.is-open span:nth-child(2) {
  opacity: 0;
}

.ev-navbar-toggler.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  min-height: 490px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.61) 43%, rgba(255, 255, 255, 0.04) 63%),
    var(--home-hero-image, url("../../design/imagenes/hero-image-home.jpg"));
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-container {
  display: flex;
  align-items: center;
  min-height: 490px;
}

.hero-content {
  width: min(100%, 430px);
  padding-top: 4px;
}

.hero-title {
  margin: 0;
  color: #262626;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.27;
  letter-spacing: 0;
}

.hero-title strong {
  display: block;
  color: var(--color-olive);
  font-weight: 400;
}

.hero-title__cms {
  display: block;
}

.hero-title__cms br {
  display: block;
}

.hero-title .hero-title__cms strong,
.hero-title .hero-title__cms b {
  display: inline;
  font-weight: 500;
}

.hero-title .hero-title__cms em,
.hero-title .hero-title__cms i,
.hero-title .hero-title__cms u,
.hero-title .hero-title__cms span,
.hero-title .hero-title__cms font {
  font: inherit;
}

.hero-rule {
  width: 60px;
  height: 2px;
  margin-top: 21px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 41px;
}

.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 156px;
  min-height: 43px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ev-btn:hover,
.ev-btn:focus-visible {
  transform: translateY(-1px);
}

.ev-btn-primary {
  background: var(--color-olive);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(63, 74, 42, 0.18);
}

.ev-btn-primary:hover,
.ev-btn-primary:focus-visible {
  background: var(--color-olive-dark);
  color: var(--color-white);
}

.ev-btn-outline {
  border-color: #9fa68a;
  background: rgba(255, 255, 255, 0.72);
  color: #111111;
  backdrop-filter: blur(10px);
}

.ev-btn-outline:hover,
.ev-btn-outline:focus-visible {
  border-color: var(--color-olive);
  background: var(--color-white);
  color: var(--color-olive-dark);
  box-shadow: 0 12px 24px rgba(63, 74, 42, 0.12);
}

.btn-arrow {
  font-size: 21px;
  line-height: 0;
}

.values-section {
  padding: 28px 0 31px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfa 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.value-item {
  position: relative;
  display: flex;
  min-height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 28px;
  text-align: center;
}

.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 142px;
  background: var(--color-border);
}

.value-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 50%;
  background: #efeee6;
  color: #81883d;
}

.value-icon svg {
  width: 40px;
  height: 40px;
}

.value-item h3 {
  max-width: 252px;
  margin: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.value-rule {
  width: 28px;
  height: 2px;
  margin-top: 18px;
  background: var(--color-olive);
}

.intro-section {
  padding: 11px 0 8px;
  background: var(--color-white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: 72px;
}

.intro-copy {
  padding-top: 2px;
}

.intro-copy h2 {
  margin: 0;
  color: var(--color-olive);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.intro-copy .section-rule {
  margin-top: 24px;
}

.intro-text,
.intro-copy > p {
  max-width: 430px;
  margin: 30px 0 42px;
  color: #2d2d2d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.66;
}

.intro-text p {
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.intro-text p + p {
  margin-top: 16px;
}

.intro-button {
  min-width: 196px;
  min-height: 45px;
  padding-inline: 22px;
  border-radius: 24px;
}

.intro-media {
  padding-top: 3px;
}

.intro-media img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.13) 1px, transparent 1.6px) 0 0 / 9px 9px,
    linear-gradient(105deg, #647236 0%, #52602f 54%, #3f4a2a 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(63, 74, 42, 0.06), rgba(63, 74, 42, 0.42));
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 185px;
  grid-template-columns: minmax(0, 1fr) 250px 325px;
  align-items: center;
  gap: 28px;
}

.cta-copy {
  padding-top: 3px;
}

.cta-eyebrow {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
}

.cta-copy h2 {
  margin: 0;
  color: var(--color-white);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.cta-rule {
  width: 38px;
  margin-top: 17px;
  background: var(--color-white);
}

.cta-copy p:last-child {
  max-width: 410px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 1.48;
}

.cta-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.whatsapp-button {
  display: inline-flex;
  min-height: 46px;
  min-width: 228px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-olive-dark);
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 28px rgba(20, 26, 14, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: var(--color-olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(20, 26, 14, 0.2);
}

.whatsapp-icon {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: #58bd67;
  color: #58bd67;
  font-size: 10px;
}

.ev-btn-light-outline {
  min-width: 228px;
  min-height: 45px;
  padding-inline: 26px;
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

.ev-btn-light-outline:hover,
.ev-btn-light-outline:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

.cta-bubbles {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3px;
}

.travel-bubble-wrap {
  position: relative;
  display: inline-flex;
  width: 94px;
  height: 94px;
  margin-left: -13px;
  border-radius: 50%;
  outline: none;
}

.travel-bubble-wrap:first-child {
  margin-left: 0;
}

.travel-bubble-wrap::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 50%;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: max-content;
  max-width: 260px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(31, 39, 20, 0.94);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 12px 28px rgba(13, 18, 10, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 5px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: normal;
}

.travel-bubble-wrap::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: calc(100% + 5px);
  z-index: 5;
  border: 7px solid transparent;
  border-top-color: rgba(31, 39, 20, 0.94);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.travel-bubble-wrap:hover::after,
.travel-bubble-wrap:hover::before,
.travel-bubble-wrap:focus-visible::after,
.travel-bubble-wrap:focus-visible::before {
  opacity: 1;
  transform: translate(50%, 0);
}

.travel-bubble {
  width: 94px;
  height: 94px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(13, 18, 10, 0.22);
  object-fit: cover;
}

.travel-bubble-1 {
  object-position: 26% 26%;
}

.travel-bubble-2 {
  object-position: center;
}

.travel-bubble-3 {
  object-position: 70% 68%;
}

.site-footer {
  padding: 42px 0 10px;
  background: var(--color-white);
  color: #252525;
  border-top: 1px solid rgba(95, 111, 58, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px, 0.58fr) minmax(260px, 0.78fr);
  align-items: start;
  gap: clamp(36px, 7vw, 112px);
}

.footer-brand img {
  width: 168px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0 0 18px;
  color: #444444;
  font-size: 13px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #c5c7bd;
  border-radius: 50%;
  color: #343434;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--color-olive);
  color: var(--color-olive);
  transform: translateY(-1px);
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #222222;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-column li {
  color: #444444;
  font-size: 13px;
  line-height: 1.35;
}

.footer-column a {
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-column a.is-active {
  color: var(--color-olive);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.footer-contact {
  justify-self: end;
}

.contact-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  color: var(--color-olive);
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1.7px solid currentColor;
}

.contact-icon-phone::before {
  border-radius: 8px 8px 8px 2px;
  transform: rotate(-34deg);
}

.contact-icon-mail::before {
  border-radius: 1px;
}

.contact-icon-mail::after {
  inset: 5px 2px 2px;
  border-top: 1.7px solid currentColor;
  border-right: 0;
  border-bottom: 0;
  border-left: 1.7px solid currentColor;
  transform: rotate(-45deg);
}

.contact-icon-pin::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.contact-icon-pin::after {
  inset: 7px;
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 14px;
  border-top: 1px solid #dcddd7;
}

.footer-bottom p {
  margin: 0;
  color: #666666;
  font-size: 12px;
  line-height: 1.4;
}

.responsible-tourism {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.responsible-tourism span {
  color: var(--color-olive);
  font-size: 20px;
  line-height: 1;
}

.tours-page {
  background: var(--color-white);
}

.tours-hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  background-image: var(--tours-hero-image, url("../../design/imagenes/hero-image-tours.jpg"));
  background-position: center top;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.tours-hero__inner {
  display: flex;
  align-items: center;
  min-height: 430px;
}

.tours-hero__copy {
  width: min(100%, 300px);
  margin-left: 12px;
  padding-top: 0;
}

.tours-hero__copy h1 {
  margin: 0;
  color: var(--color-olive);
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.tours-hero__copy .section-rule {
  width: 47px;
  height: 2px;
  margin-top: 28px;
  background: var(--color-lime);
}

.tours-hero__copy p {
  max-width: 255px;
  margin: 25px 0 0;
  color: #222222;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.destinations-section {
  margin-top: -10px;
}

.destinations-panel {
  padding: 25px 30px 28px;
  border: 1px solid rgba(231, 232, 224, 0.88);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(42, 46, 35, 0.13), 0 3px 12px rgba(42, 46, 35, 0.06);
  backdrop-filter: blur(16px);
}

.section-heading h2 {
  margin: 0;
  color: var(--color-olive);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.destinations-panel h2 {
  margin: 0;
  color: var(--color-olive);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.destinations-filter {
  display: grid;
  grid-template-columns: 1.18fr repeat(5, 0.95fr);
  gap: 16px;
  margin-top: 18px;
}

.destination-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px 17px;
  border: 1px solid #d5d7cf;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #222222;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.destination-pill:hover,
.destination-pill:focus-visible {
  border-color: var(--color-olive);
  box-shadow: 0 12px 24px rgba(63, 74, 42, 0.12);
  transform: translateY(-1px);
}

.destination-pill.is-active {
  border-color: var(--color-olive);
  background: var(--color-olive);
  color: var(--color-white);
  box-shadow: 0 15px 28px rgba(63, 74, 42, 0.24);
}

.destination-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--color-olive);
}

.destination-icon i {
  font-size: 20px;
  line-height: 1;
}

.destination-pill.is-active .destination-icon {
  color: var(--color-white);
}

.featured-tours-section {
  padding: 23px 0 25px;
}

.featured-tours-section .section-heading h2 {
  color: var(--color-olive);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading .section-rule {
  width: 32px;
  height: 2px;
  margin-top: 11px;
  background: var(--color-olive);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 19px;
}

.tour-card {
  overflow: hidden;
  border: 1px solid #dfe0d8;
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 36px rgba(32, 37, 24, 0.08);
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.tour-card:hover,
.tour-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(32, 37, 24, 0.13);
}

.tour-card.is-hidden {
  display: none;
  opacity: 0;
  transform: scale(0.98);
}

.tour-card__image {
  position: relative;
  height: 222px;
  overflow: hidden;
  background: var(--color-soft-green);
}

.tour-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.tour-card__badge {
  position: absolute;
  top: 16px;
  left: 17px;
  min-width: 78px;
  padding: 8px 13px 7px;
  border-radius: 16px;
  background: rgba(113, 122, 54, 0.86);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.tour-card__favorite {
  position: absolute;
  top: 12px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.tour-card__content {
  padding: 19px 17px 14px;
}

.tour-card__content h3 {
  margin: 0 0 12px;
  color: #252525;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
}

.tour-card__duration {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  color: #222222;
  font-size: 12px;
  font-weight: 400;
}

.duration-icon {
  display: inline-flex;
  width: 13px;
  height: 13px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #202020;
  font-size: 12px;
  line-height: 1;
}

.tour-card__description {
  min-height: 70px;
  margin: 0 0 14px;
  color: #333333;
  font-size: 12px;
  line-height: 1.65;
}

.tour-card__price {
  display: grid;
  gap: 2px;
  margin: 0 0 15px;
  color: var(--color-olive);
}

.tour-card__price span {
  color: #222222;
  font-size: 12px;
  font-weight: 400;
}

.tour-card__price strong {
  color: var(--color-olive);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.tour-card__button {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid #9ba05e;
  border-radius: 22px;
  background: var(--color-white);
  color: #111111;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tour-card__button i {
  color: var(--color-olive);
  font-size: 16px;
  line-height: 1;
}

.tour-card__button:hover,
.tour-card__button:focus-visible {
  background: var(--color-olive);
  color: var(--color-white);
  transform: translateY(-1px);
}

.tour-card__button:hover i,
.tour-card__button:focus-visible i {
  color: var(--color-white);
}

.tours-empty-message {
  margin: 26px 0 0;
  padding: 18px;
  border: 1px solid rgba(95, 111, 58, 0.18);
  border-radius: 8px;
  background: var(--color-bg);
  color: var(--color-muted);
  text-align: center;
}

.all-tours-action {
  display: flex;
  justify-content: center;
  margin-top: 23px;
}

.all-tours-action .ev-btn {
  min-width: 284px;
  min-height: 40px;
  border-color: #b1b678;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 500;
}

.all-tours-action .ev-btn .btn-arrow {
  color: var(--color-olive);
  font-size: 16px;
}

.all-tours-action .ev-btn:hover .btn-arrow,
.all-tours-action .ev-btn:focus-visible .btn-arrow {
  color: var(--color-white);
}

.tours-cta {
  width: min(100% - 88px, 1180px);
  margin: 0 auto 0;
  border-radius: 7px;
}

.tours-cta .cta-grid {
  width: min(100% - 58px, 1110px);
  min-height: 135px;
  grid-template-columns: minmax(0, 1fr) 270px 335px;
}

.tours-cta .cta-copy h2 {
  font-size: 25px;
}

.tours-cta .cta-eyebrow {
  color: var(--color-lime);
}

.tour-detail-page {
  background: var(--color-white);
}

.tour-detail-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--tour-detail-hero-image, url("../../design/imagenes/hero-image-detalle-tours.jpg"));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.tour-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 11, 7, 0.6) 0%, rgba(8, 11, 7, 0.34) 44%, rgba(8, 11, 7, 0.08) 100%);
}

.tour-detail-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.tour-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.tour-breadcrumb a {
  transition: color 180ms ease;
}

.tour-breadcrumb a:hover,
.tour-breadcrumb a:focus-visible {
  color: var(--color-lime);
}

.tour-detail-hero h1 {
  max-width: 740px;
  margin: 0;
  color: var(--color-white);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.tour-detail-hero__duration {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 21px 0 0;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.tour-inline-icon {
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 18px;
  line-height: 1;
}

.tour-inline-icon svg,
.tour-summary-list svg,
.itinerary-day__icon svg,
.tour-list-card svg,
.tour-form-secure svg {
  width: 100%;
  height: 100%;
}

.tour-detail-section {
  padding: 31px 0 19px;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 72px;
  align-items: start;
}

.tour-detail-content {
  min-width: 0;
}

.tour-description h2,
.tour-itinerary h2,
.tour-list-card h2,
.tour-contact-card h2 {
  margin: 0;
  color: var(--color-olive);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tour-contact-card h2 {
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

.tour-description .section-rule,
.tour-itinerary .section-rule {
  width: 34px;
  height: 2px;
  margin: 15px 0 25px;
}

.tour-description p {
  max-width: 620px;
  margin: 0 0 25px;
  color: #222222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
}

.tour-itinerary {
  margin-top: 63px;
}

.itinerary-list {
  overflow: hidden;
  border: 1px solid #dedfd8;
  border-radius: 7px;
  background: var(--color-white);
  box-shadow: 0 14px 30px rgba(32, 37, 24, 0.06);
}

.itinerary-day {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 79px;
  border-bottom: 1px solid #e2e3dc;
}

.itinerary-day:last-child {
  border-bottom: 0;
}

.itinerary-day__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  background: #efeee6;
  color: var(--color-olive);
  font-size: 18px;
  line-height: 1;
}

.itinerary-day__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px 15px 0;
  border: 0;
  background: transparent;
  color: #222222;
  text-align: left;
  cursor: pointer;
}

.itinerary-day__button strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.itinerary-day__button small {
  display: block;
  max-width: 595px;
  color: #333333;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.itinerary-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--color-olive);
  border-bottom: 2px solid var(--color-olive);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.tour-detail-sidebar {
  display: grid;
  gap: 26px;
}

.tour-price-card,
.tour-contact-card {
  border: 1px solid #d9dbd2;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(32, 37, 24, 0.08);
  backdrop-filter: blur(14px);
}

.tour-price-card {
  padding: 25px 26px 24px;
}

.tour-price-card__label {
  margin: 0 0 6px;
  color: #333333;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.tour-price-card__price {
  margin: 0;
  color: var(--color-olive);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.tour-price-card__price span {
  font-size: 30px;
  font-weight: 600;
}

.tour-price-card__note {
  margin: 7px 0 23px;
  color: #222222;
  font-size: 12px;
  font-weight: 400;
}

.tour-summary-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 20px 0 22px;
  border-top: 1px solid #e0e1dc;
  border-bottom: 1px solid #e0e1dc;
  list-style: none;
}

.tour-summary-list li {
  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.tour-summary-list li p {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  white-space: nowrap;
}

.tour-summary-list li span {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--color-olive);
  font-size: 14px;
}

.tour-summary-list strong {
  flex: 0 0 auto;
  font-weight: 500;
}

.tour-summary-list em {
  min-width: 0;
  font-style: normal;
  white-space: nowrap;
}

.tour-whatsapp-button,
.tour-reserve-button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 19px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tour-whatsapp-button {
  background: var(--color-olive);
  color: var(--color-white);
}

.tour-whatsapp-button i {
  color: var(--color-white);
  font-size: 15px;
}

.tour-reserve-button {
  position: relative;
  justify-content: center;
  margin-top: 13px;
  padding: 0 22px;
  border: 1px solid #a7ab73;
  background: var(--color-white);
  color: #222222;
}

.tour-reserve-button i {
  position: absolute;
  right: 22px;
  color: var(--color-olive);
  font-size: 16px;
}

.tour-whatsapp-button:hover,
.tour-whatsapp-button:focus-visible,
.tour-reserve-button:hover,
.tour-reserve-button:focus-visible {
  transform: translateY(-1px);
}

.tour-whatsapp-button:hover,
.tour-whatsapp-button:focus-visible {
  background: var(--color-olive-dark);
  color: var(--color-white);
}

.tour-reserve-button:hover,
.tour-reserve-button:focus-visible {
  background: var(--color-olive);
  color: var(--color-white);
}

.tour-reserve-button:hover i,
.tour-reserve-button:focus-visible i {
  color: var(--color-white);
}

.tour-contact-card {
  padding: 27px 25px 22px;
}

.tour-contact-card > p {
  margin: 10px 0 18px;
  color: #333333;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.tour-contact-form {
  display: grid;
  gap: 10px;
}

.tour-contact-form label {
  display: block;
  margin: 0;
}

.tour-contact-form label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tour-contact-form input,
.tour-contact-form select,
.tour-contact-form textarea {
  width: 100%;
  min-height: 39px;
  padding: 10px 12px;
  border: 1px solid #d3d5ce;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: #222222;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.tour-contact-form textarea {
  min-height: 77px;
  resize: vertical;
}

.tour-contact-form input:focus,
.tour-contact-form select:focus,
.tour-contact-form textarea:focus {
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(95, 111, 58, 0.12);
}

.tour-contact-form button[type="submit"] {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 5px;
  background: var(--color-olive);
  color: var(--color-white);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.tour-contact-form button[type="submit"] i {
  position: absolute;
  right: 22px;
  color: var(--color-white);
  font-size: 17px;
}

.tour-contact-form button[type="submit"]:hover,
.tour-contact-form button[type="submit"]:focus-visible {
  background: var(--color-olive-dark);
  transform: translateY(-1px);
}

.tour-contact-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.tour-form-message {
  display: none;
  margin: 2px 0;
  padding: 9px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.35;
}

.tour-form-message.is-error,
.tour-form-message.is-success {
  display: block;
}

.tour-form-message.is-error {
  background: #fff1ef;
  color: #9a2e22;
}

.tour-form-message.is-success {
  background: var(--color-soft-green);
  color: var(--color-olive-dark);
}

.tour-form-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
  color: #444444;
  font-size: 11px;
}

.tour-form-secure span {
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  color: var(--color-olive);
  font-size: 13px;
}

.tour-lists-section {
  padding: 17px 0 22px;
}

.tour-lists-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}

.tour-list-card {
  position: relative;
  min-height: 190px;
}

.tour-list-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -21px;
  width: 1px;
  height: 170px;
  background: #dcddd7;
}

.tour-list-card h2 {
  margin-bottom: 25px;
  color: var(--color-olive);
  font-size: 15px;
  font-weight: 600;
}

.tour-list-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-list-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #333333;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.48;
}

.tour-list-card li span {
  display: inline-flex;
  width: 15px;
  height: 15px;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--color-olive);
  font-size: 12px;
  line-height: 1;
}

.tour-includes li span {
  background: transparent;
  color: var(--color-olive);
  padding: 0;
}

.tour-gallery-section {
  padding: 0 0 34px;
}

.tour-gallery-section .section-heading h2 {
  color: var(--color-olive);
  font-size: 15px;
  font-weight: 600;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 19px;
}

.tour-gallery__item {
  overflow: hidden;
  height: 137px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: var(--color-soft-green);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(32, 37, 24, 0.08);
}

.tour-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.tour-gallery__item:hover img,
.tour-gallery__item:focus-visible img {
  transform: scale(1.05);
}

.tour-detail-cta {
  width: min(100% - 88px, 1180px);
  margin: 0 auto;
  border-radius: 7px;
}

.tour-detail-cta .cta-grid {
  width: min(100% - 58px, 1110px);
  min-height: 135px;
  grid-template-columns: minmax(0, 1fr) 270px 335px;
}

.tour-detail-cta .cta-copy h2 {
  font-size: 25px;
}

.tour-detail-cta .cta-eyebrow {
  color: var(--color-lime);
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(12, 15, 9, 0.82);
}

.tour-lightbox[hidden] {
  display: none;
}

.tour-lightbox img {
  max-width: min(100%, 1080px);
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.tour-lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.has-lightbox {
  overflow: hidden;
}

.info-page {
  background: var(--color-white);
}

.info-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--info-hero-image, url("../../design/imagenes/hero-image-ventajas.jpg"));
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--color-white);
}

.info-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 15, 0.58) 0%, rgba(12, 16, 15, 0.36) 45%, rgba(12, 16, 15, 0.08) 100%);
}

.info-hero__content {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.info-hero__title {
  max-width: 390px;
  margin: 0;
  color: var(--color-white);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
}

.info-hero .section-rule {
  width: 54px;
  height: 3px;
  margin: 29px 0 27px;
  background: var(--color-lime);
}

.info-hero__subtitle {
  max-width: 385px;
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.62);
}

.info-content {
  padding: 48px 0 38px;
  background: var(--color-white);
}

.info-rich-content {
  display: block;
  max-width: 860px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  white-space: pre-wrap;
}

.info-rich-content > * {
  margin: 0;
}

.info-rich-content h1,
.info-rich-content h2,
.info-rich-content h3,
.info-rich-content h4,
.info-rich-content h5,
.info-rich-content h6,
.info-rich-content p,
.info-rich-content div,
.info-rich-content li {
  max-width: none;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}

.info-rich-content ul,
.info-rich-content ol {
  margin: 0;
  padding-left: 22px;
}

.info-rich-content strong,
.info-rich-content b {
  font-weight: 700;
}

.info-content__wrapper {
  max-width: 800px;
}

.info-block {
  margin-bottom: 38px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 360ms ease, transform 360ms ease;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block__title {
  margin: 0 0 14px;
  color: var(--color-olive);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.info-block__text p {
  margin: 0 0 11px;
  color: #202020;
  font-size: 16px;
  line-height: 1.62;
}

.info-block__text p:last-child {
  margin-bottom: 0;
}

.has-info-animations .info-block:not(.is-visible) {
  opacity: 0;
  transform: translateY(12px);
}

.info-cta {
  width: min(100% - 88px, 1180px);
  margin: 0 auto;
  border-radius: 7px;
}

.info-cta .cta-grid {
  width: min(100% - 58px, 1110px);
  min-height: 170px;
  grid-template-columns: minmax(0, 1fr) 270px 335px;
}

.info-cta .cta-eyebrow {
  color: var(--color-lime);
}

.contact-page {
  background: var(--color-white);
}

.contact-section {
  padding: 64px 0 74px;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  border: 1px solid rgba(95, 111, 58, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(25, 32, 17, 0.08);
}

.contact-form-card {
  padding: 34px;
}

.contact-map-card {
  padding: 26px;
}

.contact-card .section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--color-olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  color: #1f241d;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0;
}

.contact-card p {
  margin: 13px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-section-copy {
  margin-top: 13px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-section-copy p,
.contact-section-copy div {
  margin: 0 0 10px;
}

.contact-section-copy p:last-child,
.contact-section-copy div:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field label {
  margin: 0;
  color: #232820;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dfe3d8;
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-text);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  outline: 0;
  padding: 13px 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
  min-height: 144px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color-olive);
  box-shadow: 0 0 0 4px rgba(95, 111, 58, 0.12);
}

.contact-field input.is-invalid,
.contact-field textarea.is-invalid {
  border-color: #b94a48;
  box-shadow: 0 0 0 4px rgba(185, 74, 72, 0.1);
}

.contact-verification {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 10px;
  align-items: center;
}

.contact-verification span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-radius: 14px;
  background: #f4f7ed;
  color: var(--color-olive-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  padding: 0 14px;
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.contact-submit {
  width: max-content;
  min-width: 210px;
  justify-content: center;
  margin-top: 4px;
}

.contact-submit.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.contact-form-message {
  min-height: 22px;
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.contact-form-message.is-success {
  color: #2f7a3d;
}

.contact-form-message.is-error {
  color: #a33a36;
}

.contact-map-frame {
  height: 420px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(95, 111, 58, 0.14);
  border-radius: 20px;
  background: var(--color-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-cta .cta-copy h2 {
  max-width: 470px;
  font-size: 24px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
