/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 20 2026 | 18:22:57 */
/* E-ckonnections Global CSS - usar uma vez no site */
:root {
  --bg: #f5eee8;
  --paper: #fffaf5;
  --paper-2: #f8f1eb;
  --text: #171717;
  --muted: #6d625c;
  --soft: #a0938a;
  --line: rgba(30, 24, 20, 0.1);
  --primary: #1875c8;
  --primary-dark: #0f5ea1;
  --accent: #ff7a2f;
  --green: #15986b;
  --deep: #111111;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --max: 1240px;
  --shadow: 0 22px 55px rgba(43, 33, 26, 0.11);
  --shadow-soft: 0 14px 30px rgba(43, 33, 26, 0.08);
}
html {
  scroll-behavior: smooth;
}
.eck-page,
.eck-page * {
  box-sizing: border-box;
}
.eck-page {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(255, 122, 47, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(24, 117, 200, 0.08),
      transparent 24%
    ),
    var(--bg);
  overflow-x: hidden;
}
.eck-page img {
  display: block;
  max-width: 100%;
}
.eck-page a {
  color: inherit;
  text-decoration: none;
}
.eck-page button,
.eck-page input,
.eck-page select,
.eck-page textarea {
  font: inherit;
}

/* =========================
   PAGE: HOME
   Usar wrapper: <div class="eck-page eck-home-page">
   ========================= */
.eck-home-page,
.eck-home-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.eck-home-page {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(255, 122, 47, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(24, 117, 200, 0.08),
      transparent 24%
    ),
    var(--bg);
  overflow-x: hidden;
}

.eck-home-page img {
  display: block;
  max-width: 100%;
}

.eck-home-page a {
  color: inherit;
  text-decoration: none;
}

.eck-home-page button {
  font: inherit;
}

.eck-home-page .container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.eck-home-page .section {
  padding: 74px 0;
}

.eck-home-page .section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.eck-home-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eck-home-page .section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eck-home-page .section-title {
  max-width: 720px;
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.eck-home-page .section-copy {
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.eck-home-page .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    border-color 0.24s ease;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(43, 33, 26, 0.1);
}

.eck-home-page .btn::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 14px;
  width: 34%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
  filter: blur(5px);
  opacity: 0.62;
  pointer-events: none;
}

.eck-home-page .btn span {
  position: relative;
  z-index: 1;
}

.eck-home-page .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(43, 33, 26, 0.14);
}

.eck-home-page .btn-primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 122, 47, 0.08)),
    rgba(255, 122, 47, 0.78);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 30px rgba(255, 122, 47, 0.2);
}

.eck-home-page .btn-primary:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 122, 47, 0.1)),
    rgba(255, 122, 47, 0.86);
}

.eck-home-page .btn-dark {
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 30px rgba(0, 0, 0, 0.14);
}

.eck-home-page .btn-dark:hover {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(17, 17, 17, 0.9);
}

.eck-home-page .btn-outline {
  color: var(--text);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.46),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.32);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 26px rgba(43, 33, 26, 0.07);
}

.eck-home-page .btn-outline:hover {
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.56),
      rgba(160, 147, 138, 0.14)
    ),
    rgba(255, 250, 245, 0.5);
}

.eck-home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 238, 232, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-home-page .header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.eck-home-page .brand img {
  width: 190px;
  height: auto;
}

.eck-home-page .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.eck-home-page .nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.76);
  transition: 0.2s ease;
}

.eck-home-page .nav a:hover {
  color: var(--accent);
}

.eck-home-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eck-home-page .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.eck-home-page .menu-toggle span,
.eck-home-page .menu-toggle span::before,
.eck-home-page .menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.eck-home-page .menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.eck-home-page .menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.eck-home-page .hero {
  padding: 54px 0 56px;
}

.eck-home-page .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 42px;
}

.eck-home-page .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding-bottom: 42px;
}

.eck-home-page .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eck-home-page .hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.eck-home-page .hero h1 {
  max-width: 610px;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.085em;
  margin-bottom: 22px;
}

.eck-home-page .title-line {
  display: block;
  will-change: transform, opacity, filter;
}

.eck-home-page .hero h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.eck-home-page .hero p {
  max-width: 540px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 28px;
}

.eck-home-page .hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.eck-home-page .hero-media {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
  align-items: stretch;
  min-height: 505px;
}

.eck-home-page .hero-media::before {
  content: "";
  position: absolute;
  inset: -92px -118px -76px -150px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background: url("https://eckonnections.com/wp-content/uploads/2026/05/mapa-mundo.webp")
    center / contain no-repeat;
  transform: rotate(-3deg) scale(1.08);
  filter: saturate(0.8);
}

.eck-home-page .hero-img {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.eck-home-page .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}

.eck-home-page .hero-img.main {
  z-index: 5;
  min-height: 505px;
}

.eck-home-page .hero-stack {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.eck-home-page .hero-stack .hero-img:first-child {
  z-index: 7;
}

.eck-home-page .hero-stack .hero-img:last-child {
  z-index: 3;
}

.eck-home-page .hero-stack .hero-img {
  min-height: 238px;
}

.eck-home-page .destination-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.eck-home-page .filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.eck-home-page .filter-tabs button {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.eck-home-page .filter-tabs button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.eck-home-page .filter-tabs button.active {
  color: var(--text);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.42);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(43, 33, 26, 0.08);
}

.eck-home-page .destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  min-height: 325px;
  transition:
    opacity 0.36s ease,
    transform 0.36s ease,
    filter 0.36s ease;
}

.eck-home-page .destination-grid.is-switching {
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  filter: blur(8px);
}

.eck-home-page .destination-card {
  display: block;
  overflow: hidden;

  animation: destinationReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eck-home-page .destination-card:nth-child(2) {
  animation-delay: 0.05s;
}

.eck-home-page .destination-card:nth-child(3) {
  animation-delay: 0.1s;
}

.eck-home-page .destination-card:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes destinationReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.eck-home-page .destination-card img,
.eck-home-page .destination-card video {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transform-origin: center;
  border-radius: 22px;
  background: var(--paper-2);
  box-shadow: var(--shadow-soft);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.eck-home-page .destination-card:hover img,
.eck-home-page .destination-card:hover video {
  transform: scale(1.04);
}

.eck-home-page .destination-card video {
  pointer-events: none;
}

.eck-home-page .destination-card h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.eck-home-page .destination-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.eck-home-page .why {
  background: rgba(255, 250, 245, 0.45);
  border-top: 1px solid rgba(30, 24, 20, 0.07);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-home-page .why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.eck-home-page .why-feature {
  padding: 36px;
  border-radius: 30px;
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.eck-home-page .why-feature h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.eck-home-page .why-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.78;
}

.eck-home-page .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.eck-home-page .feature-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.eck-home-page .feature-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #4f4741;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(160, 147, 138, 0.16)
    ),
    rgba(255, 250, 245, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.52);
  margin-bottom: 16px;
  font-weight: 600;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    inset -10px -10px 22px rgba(160, 147, 138, 0.08),
    0 16px 30px rgba(43, 33, 26, 0.09);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.eck-home-page .feature-icon::before,
.eck-home-page .process-number::before,
.eck-home-page .testimonial-avatar::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 10px;
  width: 36%;
  height: 22%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  filter: blur(1px);
  pointer-events: none;
}

.eck-home-page .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.eck-home-page .feature-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.eck-home-page .process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(24, 117, 200, 0.08),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(255, 250, 245, 0.52),
      rgba(245, 238, 232, 0.82)
    );
  border-top: 1px solid rgba(30, 24, 20, 0.07);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-home-page .process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.eck-home-page .process-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 250, 245, 0.76);
  border: 1px solid rgba(30, 24, 20, 0.07);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s ease;
}

.eck-home-page .process-card::after {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 122, 47, 0.08);
  pointer-events: none;
}

.eck-home-page .process-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 24px 52px rgba(43, 33, 26, 0.12);
}

.eck-home-page .process-number {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 19px;
  color: #4f4741;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(160, 147, 138, 0.18)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.76),
    inset -12px -12px 24px rgba(160, 147, 138, 0.1),
    0 18px 34px rgba(43, 33, 26, 0.1);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.eck-home-page .process-card h3 {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.eck-home-page .process-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.eck-home-page .about {
  position: relative;
  overflow: hidden;
}

.eck-home-page .about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: stretch;
}

.eck-home-page .about-media {
  position: relative;
  min-height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: url("https://eckonnections.com/wp-content/uploads/2026/05/family.webp")
    center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.eck-home-page .about-media::before {
  display: none;
}

.eck-home-page .about-media::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% 12%;
  width: 72%;
  height: 42%;
  border-radius: 50%;
  background: rgba(255, 122, 47, 0.12);
  filter: blur(52px);
  pointer-events: none;
}

.eck-home-page .about-content {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0;
}

.eck-home-page .about-content h2 {
  max-width: 760px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}

.eck-home-page .about-content p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
  margin-bottom: 18px;
}

.eck-home-page .about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.eck-home-page .about-value {
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.eck-home-page .about-value strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.eck-home-page .about-value span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.eck-home-page .testimonials-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.eck-home-page .testimonial-featured {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.74)),
    url("https://images.unsplash.com/photo-1522199710521-72d69614c702?auto=format&fit=crop&w=1200&q=85")
      center / cover;
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eck-home-page .testimonial-featured::before {
  content: "“";
  position: absolute;
  top: -28px;
  right: 34px;
  font-size: 180px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Manrope", sans-serif;
  pointer-events: none;
}

.eck-home-page .testimonial-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.eck-home-page .testimonial-featured p {
  position: relative;
  max-width: 720px;
  font-size: clamp(26px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.eck-home-page .testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.eck-home-page .testimonial-avatar {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.24),
      rgba(255, 122, 47, 0.34)
    ),
    rgba(255, 122, 47, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 600;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 24px rgba(255, 122, 47, 0.16);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.eck-home-page .testimonial-author strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.eck-home-page .testimonial-author span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.eck-home-page .testimonial-list {
  display: grid;
  gap: 16px;
}

.eck-home-page .testimonial-card {
  padding: 24px;
  border-radius: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.eck-home-page .testimonial-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  margin: 12px 0 18px;
}

.eck-home-page .testimonial-card .testimonial-stars {
  font-size: 14px;
  margin-bottom: 0;
}

.eck-home-page .testimonial-card .testimonial-author {
  margin-top: 0;
}

.eck-home-page .testimonial-card .testimonial-author span {
  color: var(--muted);
}

.eck-home-page .testimonial-card .testimonial-avatar {
  width: 46px;
  height: 46px;
  color: #4f4741;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.46),
      rgba(160, 147, 138, 0.18)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 22px rgba(43, 33, 26, 0.08);
}

.eck-home-page .cta {
  padding: 0 0 74px;
}

.eck-home-page .cta-card {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
  border-radius: 34px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.24), rgba(12, 11, 10, 0.64)),
    url("https://eckonnections.com/wp-content/uploads/2026/05/tropical_coastline_at_golden_hour.webp")
      center / cover;
  box-shadow: var(--shadow);
}

.eck-home-page .cta-card > div {
  position: relative;
  z-index: 1;
}

.eck-home-page .cta-card h2 {
  max-width: 760px;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 16px;
}

.eck-home-page .cta-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.76;
  margin: 0 auto 24px;
}

.eck-home-page .site-footer {
  background: #111;
  color: #fff;
  padding: 44px 0 28px;
}

.eck-home-page .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
}

.eck-home-page .footer-logo {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.eck-home-page .footer-about p,
.eck-home-page .footer-col a,
.eck-home-page .footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}

.eck-home-page .footer-col h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.eck-home-page .footer-col a {
  display: block;
  margin-bottom: 9px;
}

.eck-home-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1060px) {
  .eck-home-page .hero-grid,
  .eck-home-page .why-grid,
  .eck-home-page .about-grid,
  .eck-home-page .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .eck-home-page .destination-grid,
  .eck-home-page .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eck-home-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .eck-home-page .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .eck-home-page .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .eck-home-page .nav.open {
    display: flex;
  }
  .eck-home-page .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .eck-home-page .nav a:hover {
    background: var(--paper-2);
  }
  .eck-home-page .menu-toggle {
    display: inline-flex;
  }
  .eck-home-page .header-actions .btn {
    display: none;
  }
  .eck-home-page .hero {
    padding-top: 38px;
  }
  .eck-home-page .hero-media {
    min-height: initial;
  }
  .eck-home-page .scroll-plane {
    display: none;
  }
  .eck-home-page .hero-media::before {
    inset: -70px -70px -54px -78px;
    opacity: 0.16;
    transform: rotate(-3deg) scale(1.04);
  }
  .eck-home-page .hero-img.main,
  .eck-home-page .hero-stack .hero-img {
    min-height: 280px;
  }
  .eck-home-page .section-head,
  .eck-home-page .destination-filter {
    display: block;
  }
  .eck-home-page .section-copy,
  .eck-home-page .filter-tabs {
    margin-top: 14px;
  }
  .eck-home-page .feature-grid {
    grid-template-columns: 1fr;
  }
  .eck-home-page .testimonial-featured {
    min-height: 360px;
    padding: 30px;
  }
  .eck-home-page .about-media {
    min-height: 460px;
  }
  .eck-home-page .about-content {
    min-height: auto;
    padding: 0;
  }
  .eck-home-page .testimonial-featured p {
    font-size: clamp(24px, 7vw, 38px);
  }
}

@media (max-width: 600px) {
  .eck-home-page .container {
    width: min(100% - 24px, var(--max));
  }
  .eck-home-page .section {
    padding: 58px 0;
  }
  .eck-home-page .brand img {
    width: 154px;
  }
  .eck-home-page .hero h1 {
    font-size: 44px;
  }
  .eck-home-page .hero-copy {
    padding-bottom: 36px;
  }
  .eck-home-page .hero-media {
    grid-template-columns: 1fr 0.78fr;
    gap: 10px;
  }
  .eck-home-page .hero-media::before {
    inset: -42px -42px -38px -48px;
    opacity: 0.12;
    transform: rotate(-4deg) scale(1.14);
  }
  .eck-home-page .hero-stack {
    gap: 10px;
  }
  .eck-home-page .hero-img.main,
  .eck-home-page .hero-stack .hero-img {
    min-height: 210px;
    border-radius: 20px;
  }
  .eck-home-page .destination-grid,
  .eck-home-page .process-grid,
  .eck-home-page .footer-grid {
    grid-template-columns: 1fr;
  }
  .eck-home-page .process-card {
    min-height: auto;
    padding: 24px;
  }
  .eck-home-page .about-media {
    min-height: 390px;
    border-radius: 28px;
    background-position: center center;
  }
  .eck-home-page .about-values {
    grid-template-columns: 1fr;
  }
  .eck-home-page .destination-card img,
  .eck-home-page .destination-card video {
    height: 310px;
  }
  .eck-home-page .footer-bottom {
    flex-direction: column;
  }
}

/* =========================
   PAGE: RESERVA
   Usar wrapper: <div class="eck-page eck-reserva-page">
   ========================= */
.eck-reserva-page,
.eck-reserva-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.eck-reserva-page {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(255, 122, 47, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(24, 117, 200, 0.08),
      transparent 24%
    ),
    var(--bg);
  overflow-x: hidden;
}

.eck-reserva-page img {
  display: block;
  max-width: 100%;
}

.eck-reserva-page a {
  color: inherit;
  text-decoration: none;
}

.eck-reserva-page button,
.eck-reserva-page input,
.eck-reserva-page select,
.eck-reserva-page textarea {
  font: inherit;
}

.eck-reserva-page .container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.eck-reserva-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eck-reserva-page .section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eck-reserva-page .title-line {
  display: block;
  will-change: transform, opacity, filter;
}

.eck-reserva-page .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(43, 33, 26, 0.1);
}

.eck-reserva-page .btn::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 14px;
  width: 34%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
  filter: blur(5px);
  opacity: 0.62;
  pointer-events: none;
}

.eck-reserva-page .btn span {
  position: relative;
  z-index: 1;
}

.eck-reserva-page .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(43, 33, 26, 0.14);
}

.eck-reserva-page .btn-primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 122, 47, 0.08)),
    rgba(255, 122, 47, 0.78);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 30px rgba(255, 122, 47, 0.2);
}

.eck-reserva-page .btn-dark {
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

.eck-reserva-page .btn-outline {
  color: var(--text);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.46),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.32);
  border-color: rgba(255, 255, 255, 0.52);
}

.eck-reserva-page .site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 238, 232, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-reserva-page .header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.eck-reserva-page .brand img {
  width: 190px;
  height: auto;
}

.eck-reserva-page .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.eck-reserva-page .nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.76);
  transition: 0.2s ease;
}

.eck-reserva-page .nav a:hover,
.eck-reserva-page .nav a.active {
  color: var(--accent);
}

.eck-reserva-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eck-reserva-page .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.eck-reserva-page .menu-toggle span,
.eck-reserva-page .menu-toggle span::before,
.eck-reserva-page .menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.eck-reserva-page .menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.eck-reserva-page .menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.eck-reserva-page .reservation-hero {
  padding: 74px 0 52px;
}

.eck-reserva-page .reservation-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: stretch;
}

.eck-reserva-page .hero-copy {
  align-self: center;
  padding-bottom: 34px;
}

.eck-reserva-page .hero-process-panel {
  position: relative;
  overflow: visible;
  min-height: 620px;
  padding: 30px;
  border-radius: 38px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eck-reserva-page .hero-process-panel::before {
  content: "";
  position: absolute;
  inset: 8% 2% 10% 8%;
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 122, 47, 0.11),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(24, 117, 200, 0.08),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.24),
      rgba(160, 147, 138, 0.07)
    );
  opacity: 0.62;
  filter: blur(2px);
  pointer-events: none;
}

.eck-reserva-page .hero-process-top,
.eck-reserva-page .hero-process-badge {
  display: none;
}

.eck-reserva-page .hero-process-steps {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  margin: 0;
}

.eck-reserva-page .hero-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  width: min(100%, 470px);
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.52),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.76),
    0 22px 46px rgba(43, 33, 26, 0.1);
  backdrop-filter: blur(16px) saturate(1.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.14);
}

.eck-reserva-page .hero-process-step:nth-child(1),
.eck-reserva-page .hero-process-step:nth-child(3) {
  margin-left: 0;
  margin-right: auto;
}

.eck-reserva-page .hero-process-step:nth-child(2) {
  margin-left: auto;
  margin-right: 0;
  transform: translateX(10px);
}

.eck-reserva-page .hero-process-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #4f4741;
  font-weight: 600;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(160, 147, 138, 0.14)
    ),
    rgba(255, 250, 245, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.76),
    0 14px 26px rgba(43, 33, 26, 0.08);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.eck-reserva-page .hero-process-step strong {
  display: block;
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.eck-reserva-page .hero-process-step span {
  display: block;
  max-width: 410px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.eck-reserva-page .hero-process-footer {
  display: none;
}

.eck-reserva-page .hero-copy h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.085em;
  margin-bottom: 24px;
}

.eck-reserva-page .hero-copy p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 34px;
}

.eck-reserva-page .scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.eck-reserva-page .scroll-indicator .mouse {
  position: relative;
  width: 34px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.22);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.28);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.76),
    0 14px 26px rgba(43, 33, 26, 0.08);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.eck-reserva-page .scroll-indicator .mouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: scrollDot 1.8s cubic-bezier(0.45, 0, 0.18, 1) infinite;
}

@keyframes scrollDot {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  70% {
    transform: translate(-50%, 19px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 25px);
    opacity: 0;
  }
}

.eck-reserva-page .booking-section {
  padding: 60px 0 78px;
}

.eck-reserva-page .booking-layout {
  display: block;
}

.eck-reserva-page .booking-form-card,
.eck-reserva-page .summary-card {
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.eck-reserva-page .booking-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
}

.eck-reserva-page .booking-form {
  display: grid;
  gap: 28px;
}

.eck-reserva-page .form-group {
  display: grid;
  gap: 16px;
}

.eck-reserva-page .form-group-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(30, 24, 20, 0.08);
}

.eck-reserva-page .form-group-header h3 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.eck-reserva-page .form-group-header span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
}

.eck-reserva-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eck-reserva-page .form-row.three {
  grid-template-columns: repeat(3, 1fr);
}

.eck-reserva-page .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eck-reserva-page .form-field label,
.eck-reserva-page .option-label {
  color: var(--muted);
  font-size: 13px;
}

.eck-reserva-page .form-field input,
.eck-reserva-page .form-field select,
.eck-reserva-page .form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  outline: none;
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.58);
  color: var(--text);
  padding: 15px 16px;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(43, 33, 26, 0.04);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.eck-reserva-page .form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.eck-reserva-page .form-field input:focus,
.eck-reserva-page .form-field select:focus,
.eck-reserva-page .form-field textarea:focus {
  border-color: rgba(255, 122, 47, 0.45);
  background: rgba(255, 250, 245, 0.84);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 4px rgba(255, 122, 47, 0.08),
    0 12px 24px rgba(43, 33, 26, 0.05);
}

.eck-reserva-page .option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.eck-reserva-page .travel-option {
  position: relative;
}

.eck-reserva-page .travel-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.eck-reserva-page .travel-option span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 16px;
  border-radius: 20px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(160, 147, 138, 0.1)
    ),
    rgba(255, 250, 245, 0.32);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.7),
    0 12px 22px rgba(43, 33, 26, 0.05);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.eck-reserva-page .travel-option span:hover {
  transform: translateY(-2px);
  color: var(--text);
}

.eck-reserva-page .travel-option input:checked + span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 122, 47, 0.12)
    ),
    rgba(255, 122, 47, 0.8);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.32),
    0 16px 30px rgba(255, 122, 47, 0.18);
}

.eck-reserva-page .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}

.eck-reserva-page .form-actions small {
  max-width: 430px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.eck-reserva-page .form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  color: #0f5f43;
  background: rgba(223, 246, 236, 0.82);
  border: 1px solid rgba(179, 229, 205, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.eck-reserva-page .form-success.show {
  display: block;
}

.eck-reserva-page .summary-card {
  margin-top: 22px;
  padding: 24px;
}

.eck-reserva-page .summary-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.eck-reserva-page .summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.eck-reserva-page .summary-item {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.eck-reserva-page .summary-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.eck-reserva-page .summary-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.eck-reserva-page .site-footer {
  background: #111;
  color: #fff;
  padding: 44px 0 28px;
}

.eck-reserva-page .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
}

.eck-reserva-page .footer-logo {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.eck-reserva-page .footer-about p,
.eck-reserva-page .footer-col a,
.eck-reserva-page .footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.eck-reserva-page .footer-col h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.eck-reserva-page .footer-col a {
  display: block;
  margin-bottom: 9px;
}

.eck-reserva-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1060px) {
  .eck-reserva-page .reservation-hero-grid {
    grid-template-columns: 1fr;
  }
  .eck-reserva-page .hero-process-panel {
    min-height: auto;
  }
  .eck-reserva-page .summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .eck-reserva-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .eck-reserva-page .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .eck-reserva-page .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .eck-reserva-page .nav.open {
    display: flex;
  }
  .eck-reserva-page .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .eck-reserva-page .nav a:hover {
    background: var(--paper-2);
  }
  .eck-reserva-page .menu-toggle {
    display: inline-flex;
  }
  .eck-reserva-page .header-actions .btn {
    display: none;
  }
  .eck-reserva-page .reservation-hero {
    padding: 46px 0 32px;
  }
  .eck-reserva-page .hero-copy h1 {
    font-size: 48px;
  }
  .eck-reserva-page .form-row,
  .eck-reserva-page .form-row.three,
  .eck-reserva-page .option-grid,
  .eck-reserva-page .form-actions {
    grid-template-columns: 1fr;
  }
  .eck-reserva-page .form-actions {
    display: grid;
  }
}

@media (max-width: 600px) {
  .eck-reserva-page .container {
    width: min(100% - 24px, var(--max));
  }
  .eck-reserva-page .brand img {
    width: 154px;
  }
  .eck-reserva-page .hero-copy h1 {
    font-size: 43px;
  }
  .eck-reserva-page .hero-process-panel {
    border-radius: 28px;
    padding: 22px;
  }
  .eck-reserva-page .hero-process-step {
    width: 100%;
    grid-template-columns: 48px 1fr;
    padding: 15px;
    transform: none !important;
  }
  .eck-reserva-page .hero-process-step:nth-child(1),
  .eck-reserva-page .hero-process-step:nth-child(2),
  .eck-reserva-page .hero-process-step:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
  }
  .eck-reserva-page .hero-process-number {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }
  .eck-reserva-page .scroll-indicator {
    align-items: flex-start;
  }
  .eck-reserva-page .booking-form-card,
  .eck-reserva-page .summary-card {
    padding: 22px;
  }
  .eck-reserva-page .form-group-header {
    display: block;
  }
  .eck-reserva-page .form-group-header span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
  .eck-reserva-page .summary-grid,
  .eck-reserva-page .footer-grid {
    grid-template-columns: 1fr;
  }
  .eck-reserva-page .footer-bottom {
    flex-direction: column;
  }
}

/* =========================
   PAGE: BLOG
   Usar wrapper: <div class="eck-page eck-blog-page">
   ========================= */
.eck-blog-page,
.eck-blog-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.eck-blog-page {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(255, 122, 47, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(24, 117, 200, 0.08),
      transparent 24%
    ),
    var(--bg);
  overflow-x: hidden;
}

.eck-blog-page img {
  display: block;
  max-width: 100%;
}

.eck-blog-page a {
  color: inherit;
  text-decoration: none;
}

.eck-blog-page button,
.eck-blog-page input {
  font: inherit;
}

.eck-blog-page .container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.eck-blog-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eck-blog-page .section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eck-blog-page .title-line {
  display: block;
  will-change: transform, opacity, filter;
}

.eck-blog-page .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(43, 33, 26, 0.1);
}

.eck-blog-page .btn::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 14px;
  width: 34%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
  filter: blur(5px);
  opacity: 0.62;
  pointer-events: none;
}

.eck-blog-page .btn span {
  position: relative;
  z-index: 1;
}

.eck-blog-page .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(43, 33, 26, 0.14);
}

.eck-blog-page .btn-primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 122, 47, 0.08)),
    rgba(255, 122, 47, 0.78);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 30px rgba(255, 122, 47, 0.2);
}

.eck-blog-page .btn-dark {
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

.eck-blog-page .btn-outline {
  color: var(--text);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.46),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.32);
  border-color: rgba(255, 255, 255, 0.52);
}

.eck-blog-page .site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 238, 232, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-blog-page .header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.eck-blog-page .brand img {
  width: 190px;
  height: auto;
}

.eck-blog-page .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.eck-blog-page .nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.76);
  transition: 0.2s ease;
}

.eck-blog-page .nav a:hover,
.eck-blog-page .nav a.active {
  color: var(--accent);
}

.eck-blog-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eck-blog-page .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.eck-blog-page .menu-toggle span,
.eck-blog-page .menu-toggle span::before,
.eck-blog-page .menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.eck-blog-page .menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.eck-blog-page .menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.eck-blog-page .blog-hero {
  padding: 42px 0 24px;
}

.eck-blog-page .blog-hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px;
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.74),
      rgba(17, 17, 17, 0.48) 54%,
      rgba(17, 17, 17, 0.26)
    ),
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.42));
  box-shadow: var(--shadow);
}

.eck-blog-page .blog-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(255, 122, 47, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.eck-blog-page .blog-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.eck-blog-page .blog-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.74),
      rgba(17, 17, 17, 0.48) 54%,
      rgba(17, 17, 17, 0.26)
    ),
    linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.42));
  pointer-events: none;
}

.eck-blog-page .blog-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  min-height: 100%;
}

.eck-blog-page .hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: 1;
  align-self: end;
}

.eck-blog-page .hero-note-card {
  align-self: end;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background: rgba(17, 17, 17, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.eck-blog-page .hero-note-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.eck-blog-page .hero-note-card span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.eck-blog-page .hero-copy h1 {
  max-width: 430px;
  font-size: clamp(42px, 4.9vw, 70px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.085em;
  margin-bottom: 20px;
}

.eck-blog-page .hero-copy p {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.76;
}

.eck-blog-page .blog-cta {
  padding: 0 0 78px;
}

.eck-blog-page .cta-card {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
  border-radius: 34px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.22), rgba(12, 11, 10, 0.68)),
    url("https://eckonnections.com/wp-content/uploads/2026/05/tropical_coastline_at_golden_hour.webp") center / cover;
  box-shadow: var(--shadow);
}

.eck-blog-page .cta-card > div {
  position: relative;
  z-index: 1;
}

.eck-blog-page .cta-card h2 {
  max-width: 760px;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.075em;
  margin-bottom: 16px;
}

.eck-blog-page .cta-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.76;
  margin: 0 auto 24px;
}

.eck-blog-page .site-footer {
  background: #111;
  color: #fff;
  padding: 44px 0 28px;
}

.eck-blog-page .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
}

.eck-blog-page .footer-logo {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.eck-blog-page .footer-about p,
.eck-blog-page .footer-col a,
.eck-blog-page .footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.eck-blog-page .footer-col h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.eck-blog-page .footer-col a {
  display: block;
  margin-bottom: 9px;
}

.eck-blog-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1060px) {
  .eck-blog-page .blog-hero-grid {
    grid-template-columns: 1fr;
  }
  .eck-blog-page .hero-copy {
    grid-column: auto;
  }
  .eck-blog-page .blog-hero-card {
    min-height: 500px;
    padding: 38px;
  }
  .eck-blog-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .eck-blog-page .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .eck-blog-page .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .eck-blog-page .nav.open {
    display: flex;
  }
  .eck-blog-page .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .eck-blog-page .nav a:hover {
    background: var(--paper-2);
  }
  .eck-blog-page .menu-toggle {
    display: inline-flex;
  }
  .eck-blog-page .header-actions .btn {
    display: none;
  }
  .eck-blog-page .blog-hero {
    padding: 46px 0 34px;
  }
  .eck-blog-page .hero-copy h1 {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .eck-blog-page .container {
    width: min(100% - 24px, var(--max));
  }
  .eck-blog-page .brand img {
    width: 154px;
  }
  .eck-blog-page .hero-copy h1 {
    font-size: 43px;
  }
  .eck-blog-page .blog-hero-card {
    min-height: 520px;
    border-radius: 28px;
    padding: 26px;
  }
  .eck-blog-page .featured-content {
    padding: 20px;
    border-radius: 24px;
  }
  .eck-blog-page .footer-grid {
    grid-template-columns: 1fr;
  }
  .eck-blog-page .footer-bottom {
    flex-direction: column;
  }
}

/* =========================
   PAGE: CONTACT
   Usar wrapper: <div class="eck-page eck-contact-page">
   ========================= */
.eck-contact-page,
.eck-contact-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.eck-contact-page {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 4%,
      rgba(255, 122, 47, 0.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(24, 117, 200, 0.08),
      transparent 24%
    ),
    var(--bg);
  overflow-x: hidden;
}

.eck-contact-page img {
  display: block;
  max-width: 100%;
}

.eck-contact-page a {
  color: inherit;
  text-decoration: none;
}

.eck-contact-page button,
.eck-contact-page input,
.eck-contact-page textarea {
  font: inherit;
}

.eck-contact-page .container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.eck-contact-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eck-contact-page .section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}

.eck-contact-page .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(43, 33, 26, 0.1);
}

.eck-contact-page .btn::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 14px;
  width: 34%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
  filter: blur(5px);
  opacity: 0.62;
  pointer-events: none;
}

.eck-contact-page .btn span {
  position: relative;
  z-index: 1;
}

.eck-contact-page .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(43, 33, 26, 0.14);
}

.eck-contact-page .btn-primary {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 122, 47, 0.08)),
    rgba(255, 122, 47, 0.78);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.34),
    0 16px 30px rgba(255, 122, 47, 0.2);
}

.eck-contact-page .btn-dark {
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}

.eck-contact-page .btn-outline {
  color: var(--text);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.46),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.32);
  border-color: rgba(255, 255, 255, 0.52);
}

.eck-contact-page .site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 238, 232, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
}

.eck-contact-page .header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.eck-contact-page .brand img {
  width: 190px;
  height: auto;
}

.eck-contact-page .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.eck-contact-page .nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.76);
  transition: 0.2s ease;
}

.eck-contact-page .nav a:hover,
.eck-contact-page .nav a.active {
  color: var(--accent);
}

.eck-contact-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eck-contact-page .menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.eck-contact-page .menu-toggle span,
.eck-contact-page .menu-toggle span::before,
.eck-contact-page .menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}

.eck-contact-page .menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.eck-contact-page .menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.eck-contact-page .contact-hero {
  padding: 68px 0 44px;
}

.eck-contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.eck-contact-page .hero-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.085em;
  margin-bottom: 24px;
}

.eck-contact-page .title-line {
  display: block;
  will-change: transform, opacity, filter;
}

.eck-contact-page .hero-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
  margin-bottom: 30px;
}

.eck-contact-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eck-contact-page .contact-visual {
  position: relative;
  min-height: 530px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.38)),
    url("https://eckonnections.com/wp-content/uploads/2026/05/contact-image.webp")
      center / cover;
  box-shadow: var(--shadow);
}

.eck-contact-page .contact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(255, 122, 47, 0.18),
      transparent 26%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 48%);
  pointer-events: none;
}

.eck-contact-page .visual-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background: rgba(17, 17, 17, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.eck-contact-page .visual-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.eck-contact-page .visual-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.eck-contact-page .contact-section {
  padding: 60px 0 78px;
}

.eck-contact-page .contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}

.eck-contact-page .contact-info,
.eck-contact-page .contact-form-card,
.eck-contact-page .map-card {
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.48),
      rgba(160, 147, 138, 0.12)
    ),
    rgba(255, 250, 245, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.eck-contact-page .contact-info {
  padding: 30px;
}

.eck-contact-page .contact-info h2,
.eck-contact-page .contact-form-card h2,
.eck-contact-page .map-card h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.065em;
  margin-bottom: 14px;
}

.eck-contact-page .contact-info > p,
.eck-contact-page .contact-form-card > p,
.eck-contact-page .map-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.eck-contact-page .contact-methods {
  display: grid;
  gap: 14px;
}

.eck-contact-page .contact-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.eck-contact-page .contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(43, 33, 26, 0.08);
}

.eck-contact-page .method-icon {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #4f4741;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.42),
      rgba(160, 147, 138, 0.16)
    ),
    rgba(255, 250, 245, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.72),
    inset -10px -10px 22px rgba(160, 147, 138, 0.08),
    0 16px 30px rgba(43, 33, 26, 0.09);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
}

.eck-contact-page .method-icon svg {
  width: 22px;
  height: 22px;
}

.eck-contact-page .contact-method strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.eck-contact-page .contact-method span,
.eck-contact-page .contact-method a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.eck-contact-page .contact-note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.86);
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.12);
}

.eck-contact-page .contact-note strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.eck-contact-page .contact-note span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.eck-contact-page .contact-form-card {
  padding: 30px;
}

.eck-contact-page .contact-form {
  display: grid;
  gap: 14px;
}

.eck-contact-page .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.eck-contact-page .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.eck-contact-page .form-field label {
  color: var(--muted);
  font-size: 13px;
}

.eck-contact-page .form-field input,
.eck-contact-page .form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  outline: none;
  border-radius: 20px;
  background: rgba(255, 250, 245, 0.58);
  color: var(--text);
  padding: 15px 16px;
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(43, 33, 26, 0.04);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.eck-contact-page .form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.eck-contact-page .form-field input:focus,
.eck-contact-page .form-field textarea:focus {
  border-color: rgba(255, 122, 47, 0.45);
  background: rgba(255, 250, 245, 0.84);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 4px rgba(255, 122, 47, 0.08),
    0 12px 24px rgba(43, 33, 26, 0.05);
}

.eck-contact-page .form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 18px;
  color: #0f5f43;
  background: rgba(223, 246, 236, 0.82);
  border: 1px solid rgba(179, 229, 205, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.eck-contact-page .form-success.show {
  display: block;
}

.eck-contact-page .map-section {
  padding: 0 0 78px;
}

.eck-contact-page .map-card {
  overflow: hidden;
}

.eck-contact-page .map-header {
  padding: 30px 30px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.eck-contact-page .map-frame {
  position: relative;
  min-height: 430px;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.32)),
    url("mapa-mundo-transparente.png") center / contain no-repeat,
    linear-gradient(
      135deg,
      rgba(255, 250, 245, 0.84),
      rgba(232, 220, 211, 0.86)
    );
  border-top: 1px solid rgba(30, 24, 20, 0.08);
}

.eck-contact-page .map-frame iframe {
  width: 100%;
  height: 430px;
  display: block;
  border: 0;
  filter: grayscale(0.15) contrast(0.95) saturate(0.9);
}

.eck-contact-page .map-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.eck-contact-page .map-placeholder-inner {
  max-width: 560px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 250, 245, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
}

.eck-contact-page .map-placeholder-inner strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.eck-contact-page .map-placeholder-inner span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.eck-contact-page .site-footer {
  background: #111;
  color: #fff;
  padding: 44px 0 28px;
}

.eck-contact-page .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
}

.eck-contact-page .footer-logo {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.eck-contact-page .footer-about p,
.eck-contact-page .footer-col a,
.eck-contact-page .footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.eck-contact-page .footer-col h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}

.eck-contact-page .footer-col a {
  display: block;
  margin-bottom: 9px;
}

.eck-contact-page .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1060px) {
  .eck-contact-page .contact-hero-grid,
  .eck-contact-page .contact-layout {
    grid-template-columns: 1fr;
  }
  .eck-contact-page .contact-visual {
    min-height: 420px;
  }
  .eck-contact-page .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .eck-contact-page .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .eck-contact-page .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .eck-contact-page .nav.open {
    display: flex;
  }
  .eck-contact-page .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .eck-contact-page .nav a:hover {
    background: var(--paper-2);
  }
  .eck-contact-page .menu-toggle {
    display: inline-flex;
  }
  .eck-contact-page .header-actions .btn {
    display: none;
  }
  .eck-contact-page .contact-hero {
    padding: 46px 0 32px;
  }
  .eck-contact-page .hero-copy h1 {
    font-size: 48px;
  }
  .eck-contact-page .form-row,
  .eck-contact-page .map-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .eck-contact-page .container {
    width: min(100% - 24px, var(--max));
  }
  .eck-contact-page .brand img {
    width: 154px;
  }
  .eck-contact-page .hero-copy h1 {
    font-size: 43px;
  }
  .eck-contact-page .contact-visual {
    min-height: 360px;
    border-radius: 28px;
  }
  .eck-contact-page .visual-card,
  .eck-contact-page .contact-info,
  .eck-contact-page .contact-form-card,
  .eck-contact-page .map-header {
    padding: 22px;
  }
  .eck-contact-page .contact-method {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }
  .eck-contact-page .method-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
  .eck-contact-page .map-frame,
  .eck-contact-page .map-placeholder,
  .eck-contact-page .map-frame iframe {
    min-height: 360px;
    height: 360px;
  }
  .eck-contact-page .footer-grid {
    grid-template-columns: 1fr;
  }
  .eck-contact-page .footer-bottom {
    flex-direction: column;
  }
}

/* =========================
   GLOBAL HEADER + FOOTER
   Usar fora dos wrappers das páginas, em templates globais do Elementor.
   Header/footer NÃO precisam de .eck-home-page, .eck-blog-page, etc.
   ========================= */
.container {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}
.site-header,
.site-header *,
.site-footer,
.site-footer * {
  box-sizing: border-box;
}
.site-header a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-header img,
.site-footer img {
  display: block;
  max-width: 100%;
}
.site-header button {
  font: inherit;
}
.site-header .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s ease,
    border-color 0.24s ease;
  white-space: nowrap;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.36),
    0 14px 28px rgba(43, 33, 26, 0.1);
}
.site-header .btn::before {
  content: "";
  position: absolute;
  inset: 1px auto auto 14px;
  width: 34%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.46), transparent);
  filter: blur(5px);
  opacity: 0.62;
  pointer-events: none;
}
.site-header .btn span {
  position: relative;
  z-index: 1;
}
.site-header .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 0 rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(43, 33, 26, 0.14);
}
.site-header .btn-dark {
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.02)
    ),
    rgba(17, 17, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.18);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(245, 238, 232, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 24, 20, 0.07);
  font-family: "Manrope", sans-serif;
  color: var(--text);
}
.header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand img {
  width: 190px;
  height: auto;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(23, 23, 23, 0.76);
  transition: 0.2s ease;
}
.nav a:hover,
.nav a.active {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 245, 0.8);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
}
.menu-toggle span::before {
  position: absolute;
  top: -6px;
}
.menu-toggle span::after {
  position: absolute;
  top: 6px;
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 44px 0 28px;
  font-family: "Manrope", sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 34px;
}
.footer-logo {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-about p,
.footer-col a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
}
.footer-col h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  margin-bottom: 9px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 1060px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 860px) {
  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: 14px 12px;
    border-radius: 14px;
  }
  .nav a:hover {
    background: var(--paper-2);
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-actions .btn {
    display: none;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, var(--max));
  }
  .brand img {
    width: 154px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
}
/********************************************************/
/* Force global header full width inside Elementor/WordPress */
.site-header {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.site-header .container,
.site-header .header-shell {
  width: min(var(--max), calc(100% - 44px)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Remove Elementor spacing around the header template */
.elementor-location-header,
.elementor-location-header > .elementor-element,
.elementor-location-header .e-con,
.elementor-location-header .elementor-widget-html,
.elementor-location-header .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}
/*********************** HOME CHNAGES****************************/
/* E-ckonnections Global CSS - usar uma vez no site

IMPORTANTE:
Este ficheiro deve conter TODO o CSS global do site.

Para não perdermos as alterações já feitas, a estrutura correta é:
1) O CSS global completo que já tens no WordPress/Elementor.
2) O patch abaixo no FINAL do ficheiro.

Neste canvas vamos manter as alterações futuras aqui. Como o bloco completo que colaste é muito grande, a parte crítica nova está integrada no fim deste ficheiro como override seguro.
*/

/* =========================
   HOME HERO IMAGE COVER FIX
   Real images must cover all hero cards
   Keep this block at the very end of your global CSS file.
   ========================= */

.eck-home-page .hero-media {
  height: 520px;
  min-height: 520px;
  align-items: stretch;
}

.eck-home-page .hero-img,
.eck-home-page .hero-img.main {
  position: relative;
  isolation: isolate;
  height: 100%;
  min-height: 0 !important;
  overflow: hidden;
}

.eck-home-page .hero-stack {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.eck-home-page .hero-stack .hero-img {
  height: 100%;
  min-height: 0 !important;
}

.eck-home-page .hero-img img {
  width: 100%;
  height: 116% !important;
  min-height: 0 !important;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
}

.eck-home-page .hero-img .elementor-widget-container,
.eck-home-page .hero-img .elementor-widget-image,
.eck-home-page .hero-img .elementor-image {
  height: 100%;
}

/* Optional image focus adjustments */
.eck-home-page .hero-img.main img {
  object-position: center center;
}

.eck-home-page .hero-stack .hero-img:first-child img {
  object-position: center center;
}

.eck-home-page .hero-stack .hero-img:last-child img {
  object-position: center center;
}

/* Tablet */
@media (max-width: 860px) {
  .eck-home-page .hero-media {
    height: auto;
    min-height: 0;
  }

  .eck-home-page .hero-img.main {
    height: 360px;
    min-height: 0 !important;
  }

  .eck-home-page .hero-stack {
    height: auto;
    grid-template-rows: none;
  }

  .eck-home-page .hero-stack .hero-img {
    height: 260px;
    min-height: 0 !important;
  }

  .eck-home-page .hero-img img {
    height: 112% !important;
    object-fit: cover;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .eck-home-page .hero-img.main {
    height: 300px;
  }

  .eck-home-page .hero-stack .hero-img {
    height: 220px;
  }
}

/* =========================
   CONTACT ELEMENTOR WRAPPER FIX
   The contact CSS is scoped to .eck-contact-page, so keep the page content
   wrapped with <div class="eck-page eck-contact-page">...</div>.
   This lets that wrapper render full width when pasted in an Elementor HTML widget.
   ========================= */
.elementor-widget-html .eck-contact-page,
.elementor-widget-container .eck-contact-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.elementor-widget-html .eck-contact-page .container,
.elementor-widget-container .eck-contact-page .container {
  width: min(var(--max), calc(100% - 44px)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* =========================
   RESERVA ELEMENTOR WRAPPER FIX
   The reservas CSS is scoped to .eck-reserva-page.
   Keep pasted page content wrapped with <div class="eck-page eck-reserva-page">...</div>.
   ========================= */
.elementor-widget-html .eck-reserva-page,
.elementor-widget-container .eck-reserva-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

.elementor-widget-html .eck-reserva-page .container,
.elementor-widget-container .eck-reserva-page .container {
  width: min(var(--max), calc(100% - 44px)) !important;
  max-width: var(--max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* The reservas page is already the booking flow, so the header CTA is redundant. */
.eck-reserva-page .header-actions > .btn[href="/reserva/"],
.eck-reserva-page .header-actions > .btn[href="/reserva"],
.eck-reserva-page .header-actions > .btn[href*="/reserva/"] {
  display: none !important;
}

/* =========================
   GLOBAL HEADER ELEMENTOR HARDENING
   Keep the global menu identical on standalone pages and inside Elementor.
   ========================= */
.site-header,
.eck-page .site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 90 !important;
  background: rgba(245, 238, 232, 0.84) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(30, 24, 20, 0.07) !important;
  font-family: "Manrope", sans-serif !important;
  color: var(--text) !important;
}

.site-header .header-shell,
.eck-page .site-header .header-shell {
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 28px !important;
}

.site-header .brand img,
.eck-page .site-header .brand img {
  width: 190px !important;
  height: auto !important;
  max-width: 100% !important;
}

.site-header .nav,
.eck-page .site-header .nav {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  list-style: none !important;
}

.site-header .nav a,
.eck-page .site-header .nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(23, 23, 23, 0.76) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.site-header .nav a:hover,
.site-header .nav a.active,
.eck-page .site-header .nav a:hover,
.eck-page .site-header .nav a.active {
  color: var(--accent) !important;
  background: transparent !important;
}

.site-header .header-actions,
.eck-page .site-header .header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.site-header button.menu-toggle,
.site-header .menu-toggle,
.eck-page .site-header button.menu-toggle,
.eck-page .site-header .menu-toggle {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  background: rgba(255, 250, 245, 0.8) !important;
  background-color: rgba(255, 250, 245, 0.8) !important;
  box-shadow: none !important;
  color: var(--text) !important;
  cursor: pointer !important;
  font: inherit !important;
  line-height: 1 !important;
  opacity: 1 !important;
  text-shadow: none !important;
  transform: none !important;
}

.site-header button.menu-toggle:hover,
.site-header button.menu-toggle:focus,
.site-header button.menu-toggle:active,
.site-header .menu-toggle:hover,
.site-header .menu-toggle:focus,
.site-header .menu-toggle:active,
.eck-page .site-header button.menu-toggle:hover,
.eck-page .site-header button.menu-toggle:focus,
.eck-page .site-header button.menu-toggle:active,
.eck-page .site-header .menu-toggle:hover,
.eck-page .site-header .menu-toggle:focus,
.eck-page .site-header .menu-toggle:active {
  border-color: var(--line) !important;
  background: rgba(255, 250, 245, 0.8) !important;
  background-color: rgba(255, 250, 245, 0.8) !important;
  box-shadow: none !important;
  color: var(--text) !important;
  transform: none !important;
}

.site-header button.menu-toggle::before,
.site-header button.menu-toggle::after,
.eck-page .site-header button.menu-toggle::before,
.eck-page .site-header button.menu-toggle::after {
  content: none !important;
  display: none !important;
}

.site-header .menu-toggle span,
.site-header .menu-toggle span::before,
.site-header .menu-toggle span::after,
.eck-page .site-header .menu-toggle span,
.eck-page .site-header .menu-toggle span::before,
.eck-page .site-header .menu-toggle span::after {
  content: "" !important;
  display: block !important;
  width: 18px !important;
  height: 2px !important;
  min-height: 2px !important;
  max-height: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--text) !important;
  background-color: var(--text) !important;
  box-shadow: none !important;
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
}

.site-header .menu-toggle span::before,
.eck-page .site-header .menu-toggle span::before {
  position: absolute !important;
  top: -6px !important;
  left: 0 !important;
}

.site-header .menu-toggle span::after,
.eck-page .site-header .menu-toggle span::after {
  position: absolute !important;
  top: 6px !important;
  left: 0 !important;
}

@media (max-width: 860px) {
  .site-header .header-shell,
  .eck-page .site-header .header-shell {
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
  }

  .site-header .nav,
  .eck-page .site-header .nav {
    display: none !important;
    position: absolute !important;
    top: 76px !important;
    left: 22px !important;
    right: 22px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px !important;
    border: 1px solid var(--line) !important;
    border-radius: 22px !important;
    background: rgba(255, 250, 245, 0.97) !important;
    box-shadow: var(--shadow-soft) !important;
  }

  .site-header .nav.open,
  .eck-page .site-header .nav.open {
    display: flex !important;
  }

  .site-header .nav a,
  .eck-page .site-header .nav a {
    display: flex !important;
    padding: 14px 12px !important;
    border-radius: 14px !important;
  }

  .site-header .nav a:hover,
  .eck-page .site-header .nav a:hover {
    background: var(--paper-2) !important;
  }

  .site-header button.menu-toggle,
  .site-header .menu-toggle,
  .eck-page .site-header button.menu-toggle,
  .eck-page .site-header .menu-toggle {
    display: inline-flex !important;
  }

  .site-header .header-actions .btn,
  .eck-page .site-header .header-actions .btn {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .site-header .brand img,
  .eck-page .site-header .brand img {
    width: 154px !important;
  }
}

@media (min-width: 861px) {
  .eck-reserva-page .site-header .nav {
    justify-content: flex-end !important;
  }
}

/* Keep the booking CTA available in the sticky mobile header. */
@media (max-width: 860px) {
  .site-header .header-actions,
  .eck-page .site-header .header-actions {
    gap: 8px !important;
  }

  .site-header .header-actions .btn,
  .eck-page .site-header .header-actions .btn {
    display: inline-flex !important;
    min-height: 42px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .site-header .header-actions .btn span,
  .eck-page .site-header .header-actions .btn span {
    white-space: nowrap !important;
  }

  .eck-reserva-page .site-header .header-actions .btn {
    display: none !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand img,
  .eck-page .site-header .brand img {
    width: 138px !important;
  }

  .site-header .header-actions .btn,
  .eck-page .site-header .header-actions .btn {
    padding: 0 11px !important;
  }
}

/* Match the mobile header edges to the page content and keep the logo readable. */
@media (max-width: 600px) {
  .site-header .container,
  .site-header .header-shell,
  .eck-page .site-header .container,
  .eck-page .site-header .header-shell {
    width: min(100% - 24px, var(--max)) !important;
  }

  .site-header .header-shell,
  .eck-page .site-header .header-shell {
    gap: 12px !important;
  }

  .site-header .brand img,
  .eck-page .site-header .brand img {
    width: 168px !important;
  }
}

@media (max-width: 380px) {
  .site-header .brand img,
  .eck-page .site-header .brand img {
    width: 150px !important;
  }
}

/* Keep first hero sections clear of the sticky global header.
   Put this at the very end so it wins over the page-specific hero rules above. */
.eck-home-page .hero,
.elementor-widget-html .eck-home-page .hero,
.elementor-widget-container .eck-home-page .hero {
  padding-top: 86px !important;
}

.eck-blog-page .blog-hero,
.elementor-widget-html .eck-blog-page .blog-hero,
.elementor-widget-container .eck-blog-page .blog-hero {
  padding-top: 74px !important;
}

.eck-blog-page .blog-hero-card,
.elementor-widget-html .eck-blog-page .blog-hero-card,
.elementor-widget-container .eck-blog-page .blog-hero-card {
  margin-top: 34px !important;
}

.eck-contact-page .contact-hero,
.elementor-widget-html .eck-contact-page .contact-hero,
.elementor-widget-container .eck-contact-page .contact-hero {
  padding-top: 88px !important;
}

.eck-home-page .hero-kicker,
.eck-home-page .hero-copy,
.eck-blog-page .blog-hero-grid,
.eck-contact-page .hero-copy {
  position: relative !important;
  z-index: 3 !important;
}

@media (max-width: 860px) {
  .eck-home-page .hero,
  .elementor-widget-html .eck-home-page .hero,
  .elementor-widget-container .eck-home-page .hero,
  .eck-blog-page .blog-hero,
  .elementor-widget-html .eck-blog-page .blog-hero,
  .elementor-widget-container .eck-blog-page .blog-hero,
  .eck-contact-page .contact-hero,
  .elementor-widget-html .eck-contact-page .contact-hero,
  .elementor-widget-container .eck-contact-page .contact-hero {
    padding-top: 62px !important;
  }

  .eck-home-page .hero,
  .elementor-widget-html .eck-home-page .hero,
  .elementor-widget-container .eck-home-page .hero,
  .eck-contact-page .contact-hero,
  .elementor-widget-html .eck-contact-page .contact-hero,
  .elementor-widget-container .eck-contact-page .contact-hero {
    padding-top: 92px !important;
  }

  .eck-home-page .hero-grid,
  .elementor-widget-html .eck-home-page .hero-grid,
  .elementor-widget-container .eck-home-page .hero-grid,
  .eck-contact-page .contact-hero-grid,
  .elementor-widget-html .eck-contact-page .contact-hero-grid,
  .elementor-widget-container .eck-contact-page .contact-hero-grid {
    margin-top: 18px !important;
  }

  .eck-blog-page .blog-hero-card,
  .elementor-widget-html .eck-blog-page .blog-hero-card,
  .elementor-widget-container .eck-blog-page .blog-hero-card {
    margin-top: 24px !important;
  }
}
/**********************  SINGLE POST *****************/

.eck-single-post-page {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
}

.eck-single-post-page figure {
  margin: 0;
}

.eck-single-post-page img {
  vertical-align: middle;
}

.eck-single-post-page .single-hero {
  padding: 150px 0 70px;
}

.eck-single-post-page .single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: stretch;
}

.eck-single-post-page .single-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eck-single-post-page .single-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.eck-single-post-page .single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.eck-single-post-page .single-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.eck-single-post-page .single-excerpt {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.eck-single-post-page .single-hero-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  margin: 0;
  background: var(--paper-2);
  align-self: stretch;
}

.eck-single-post-page .single-hero-image img,
.eck-single-post-page .single-hero-image .wp-post-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eck-single-post-page .single-content-section {
  padding: 40px 0 90px;
}

.eck-single-post-page .single-content-card {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 245, 0.86);
  box-shadow: var(--shadow-soft);
}

.eck-single-post-page .single-content {
  color: var(--text);
  font-size: 18px;
  line-height: 1.85;
}

.eck-single-post-page .single-content h2,
.eck-single-post-page .single-content h3,
.eck-single-post-page .single-content h4 {
  margin: 1.4em 0 0.55em;
  font-weight: 600;
  line-height: 1.12;
}

.eck-single-post-page .single-content p,
.eck-single-post-page .single-content ul,
.eck-single-post-page .single-content ol {
  margin-bottom: 1.15em;
}

.eck-single-post-page .single-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eck-single-post-page .single-content img {
  width: 100%;
  height: auto;
  margin: 34px 0;
  border-radius: var(--radius-md);
}

.eck-single-post-page .single-tags {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.eck-single-post-page .single-tags > span {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.eck-single-post-page .tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eck-single-post-page .tag-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.eck-single-post-page .single-cta {
  max-width: 1040px;
  margin: 28px auto 0;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-lg);
  background: var(--deep);
  color: #fff;
}

.eck-single-post-page .single-cta h2 {
  max-width: 560px;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.04;
}

.eck-single-post-page .single-cta p {
  max-width: 580px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .eck-single-post-page .single-hero {
    padding-top: 120px;
  }

  .eck-single-post-page .single-hero-grid {
    grid-template-columns: 1fr;
  }

  .eck-single-post-page .single-hero-image {
    aspect-ratio: 16 / 10;
  }

  .eck-single-post-page .single-content-card,
  .eck-single-post-page .single-cta {
    max-width: 100%;
  }

  .eck-single-post-page .single-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
