:root {
  --ink: #101820;
  --muted: #657386;
  --paper: #f7fbfb;
  --surface: #ffffff;
  --reef: #58b9ae;
  --reef-dark: #0f7f7a;
  --ocean: #0b6d83;
  --coral: #ff8a16;
  --coral-dark: #e96f00;
  --sun: #ffbd45;
  --leaf: #46aa9f;
  --line: #dcecea;
  --shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
  --button-shadow: 0 14px 28px rgba(255, 138, 22, 0.3);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, select { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: #101820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(5, 43, 83, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  color: #fff;
  flex: 0 0 auto;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 124px;
  height: 54px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 0 1 auto;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  min-width: 0;
}

.site-nav a:hover { color: var(--sun); }
.header-cta,
.primary-button,
.button-link,
.search-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
  white-space: nowrap;
}

.header-cta:hover,
.primary-button:hover,
.button-link:hover,
.search-panel button:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.34);
}

.button-link { background: var(--coral); box-shadow: var(--button-shadow); }
.header-cta { min-height: 42px; background: var(--coral); box-shadow: var(--button-shadow); }
.menu-toggle { display: none; }

.compare-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.compare-actions .primary-button,
.compare-actions .button-link,
.card-actions .primary-button,
.card-actions .button-link {
  flex: 1 1 180px;
  margin-top: 0 !important;
}

.secondary-detail-link {
  background: #fff;
  color: var(--reef-dark);
  border: 1px solid rgba(88, 185, 174, .34);
  box-shadow: 0 12px 24px rgba(16, 24, 32, .06);
}

.secondary-detail-link:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 56px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=85");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 35, 68, 0.9), rgba(0, 54, 98, 0.55), rgba(0, 54, 98, 0.18));
}

.hero-content {
  position: relative;
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow { color: var(--sun); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.1;
}

h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.2; }
.hero-copy { max-width: 650px; font-size: 20px; color: rgba(255, 255, 255, 0.9); }

.search-panel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 12px;
  max-width: 1030px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

select, input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-strip span,
.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 78px 0;
}

.split-section,
.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metrics-grid article,
.tide-card,
.compare-card,
.article-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.metrics-grid strong { display: block; color: var(--reef-dark); font-size: 42px; line-height: 1; }
.metrics-grid span { color: var(--muted); font-weight: 700; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading a { color: var(--reef-dark); font-weight: 800; }
.card-grid,
.catalog-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tour-card,
.catalog-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.tour-card img { height: 230px; object-fit: cover; }
.tour-card > div,
.catalog-body { padding: 22px; }
.tour-card p,
.catalog-card p,
.compare-card p,
.article-list p { color: var(--muted); }

.tag { background: rgba(255, 122, 0, 0.12); color: var(--coral-dark); margin-bottom: 12px; }
.tag.alt { background: rgba(255, 194, 71, 0.22); color: #8a5b00; }
.tag.sea { background: rgba(6, 70, 127, 0.1); color: var(--reef); }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-row .tag {
  margin-bottom: 0;
}

.card-meta,
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-weight: 800;
}

.price-row {
  align-items: center;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(6, 70, 127, 0.07), rgba(255, 122, 0, 0.09));
  border: 1px solid rgba(6, 70, 127, 0.08);
}

.price-row strong {
  display: block;
  color: var(--ink);
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0;
}

.price-row span {
  max-width: 90px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.card-meta {
  padding: 12px 14px;
  border-radius: 18px;
  background: #f7f9fc;
  color: var(--reef);
}

.card-stats,
.detail-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.stat-pill {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 12px 14px;
  border: 1px solid rgba(88, 185, 174, 0.22);
  border-radius: 18px;
  background: #f7fbfb;
}

.stat-pill span {
  color: #7a8796;
  font-size: 11px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-pill strong {
  color: var(--reef-dark);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.feature-band {
  width: min(1180px, calc(100% - 36px));
  padding: 40px;
  border-radius: 26px;
  background: var(--reef);
  color: #fff;
}

.feature-band p { color: rgba(255, 255, 255, 0.78); }
.article-grid a {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--reef-dark), var(--reef));
}

.article-grid span { color: #ffd07a; font-weight: 800; }
.article-grid strong { font-size: 24px; line-height: 1.15; }
.cta-section {
  text-align: center;
  max-width: 820px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  background: #03294d;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2 { font-size: 16px; color: #fff; }
.site-footer a { display: block; margin: 7px 0; }
.site-footer .brand { color: #fff; }
.site-footer.small {
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  padding-block: 28px;
}

.page-hero {
  padding: 96px clamp(18px, 5vw, 72px) 64px;
  background: #eef5fb;
}

.page-hero h1 { color: var(--ink); }
.page-hero p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 19px; }
.transfer-hero { background: #eef5fb; }
.salvador-hero { background: #fff3e7; }
.tide-hero { background: #eaf4ff; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filters button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.filters button.active {
  background: var(--reef);
  color: #fff;
  border-color: var(--reef);
}

.catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.catalog-card { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.catalog-card img { height: 100%; min-height: 320px; object-fit: cover; }
.check-list { padding-left: 18px; color: var(--muted); }
.detail-block { border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { background: #fff; padding: 24px; border: 1px solid var(--line); border-radius: 24px; }
.steps span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--sun); font-weight: 900; margin-bottom: 16px; }

.compare-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compare-card {
  display: grid;
  gap: 18px;
}

.compare-card.highlight { border-color: rgba(255, 122, 0, 0.45); }
.compare-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.compare-card dt { color: var(--muted); font-size: 13px; font-weight: 800; }
.compare-card dd {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
}

.compare-card dl > div,
.compare-card dt {
  min-width: 0;
}

.compare-card dt + dd {
  margin-top: 2px;
}

.compare-card dl {
  padding: 16px;
  border-radius: 20px;
  background: #f7f9fc;
}

.compare-card dl dd:nth-of-type(3),
.compare-card dl dd:nth-of-type(2),
.compare-card dl dd:nth-of-type(1) {
  overflow-wrap: anywhere;
}

.compare-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: #f7f9fc;
  border: 1px solid rgba(6, 70, 127, 0.08);
}

.compare-prices div {
  min-height: 88px;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(5, 43, 83, 0.06);
}

.compare-prices span {
  color: #8b98aa;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 900;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.compare-prices strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.08;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.faq {
  display: grid;
  gap: 12px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}

summary { cursor: pointer; font-weight: 900; }
.tour-card.wide { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.tour-card.wide img { height: 100%; min-height: 260px; object-fit: cover; }

.article-list {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.article-list article span {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

.article-list article a { color: var(--reef-dark); font-weight: 900; }
.tide-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

caption {
  text-align: left;
  padding: 18px;
  font-weight: 900;
}

th, td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

th { background: #f6fbf9; }
.status { color: var(--muted); background: #eef2ef; }
.status.good { color: #fff; background: var(--leaf); }
.status.ok { color: #563900; background: #ffe0a3; }

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
    padding-inline: 22px;
  }

  .site-nav {
    gap: 12px;
    font-size: 14px;
  }

  .header-cta {
    padding-inline: 18px;
  }

  .card-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--reef);
    padding: 0 16px;
    font-weight: 900;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    order: 5;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 4px;
  }

  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 13px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
  }

  .header-cta { display: none; }
  .hero {
    min-height: auto;
    align-items: center;
    padding: 78px 18px 42px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 35, 68, 0.88), rgba(0, 54, 98, 0.64));
  }

  .search-panel,
  .split-section,
  .feature-band,
  .catalog-card,
  .tour-card.wide,
  .tide-layout,
  .compare-section {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .catalog-grid,
  .article-grid,
  .steps,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .search-panel {
    border-radius: 24px;
    padding: 14px;
  }

  .search-panel button,
  .primary-button,
  .button-link {
    width: 100%;
  }

  .catalog-card img,
  .tour-card.wide img { min-height: 220px; height: 220px; }
  .section-heading { align-items: start; flex-direction: column; }
  .site-footer,
  .site-footer.small { grid-template-columns: 1fr; }

  .page-hero {
    padding: 64px 18px 44px;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: calc(100% - 92px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 { font-size: 34px; line-height: 1.06; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  .hero-copy { font-size: 17px; }
  .section { width: min(100% - 28px, 1180px); padding: 48px 0; }
  .page-hero { padding-top: 52px; }
  .feature-band { width: min(100% - 28px, 1180px); padding: 26px; }
  .compare-card dl { grid-template-columns: 1fr; }
  .compare-prices { grid-template-columns: 1fr; }

  table {
    min-width: 0;
    table-layout: fixed;
  }

  caption {
    padding: 16px;
    font-size: 18px;
  }

  th,
  td {
    padding: 12px 8px;
    font-size: 14px;
  }

  th:last-child,
  td:last-child {
    display: none;
  }

  .tour-card img,
  .catalog-card img,
  .tour-card.wide img {
    height: 215px;
    min-height: 215px;
  }

  .tour-card > div,
  .catalog-body,
  .metrics-grid article,
  .tide-card,
  .compare-card,
  .article-list article {
    padding: 18px;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-row span {
    max-width: none;
    text-align: left;
  }

  .price-row strong,
  .compare-prices strong {
    font-size: 28px;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters button {
    width: 100%;
    padding-inline: 10px;
  }

  .trust-strip span,
  .tag,
  .status {
    min-height: 26px;
    font-size: 12px;
  }

  .site-footer {
    padding: 34px 18px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
  }

  h1 { font-size: 30px; }
  h2 { font-size: 25px; }

  .hero,
  .page-hero {
    padding-inline: 14px;
  }

  .section,
  .feature-band {
    width: min(100% - 20px, 1180px);
  }

  .search-panel,
  .tour-card,
  .catalog-card,
  .compare-card,
  .feature-band,
  .article-grid a,
  .metrics-grid article,
  .tide-card,
  .article-list article {
    border-radius: 20px;
  }

  .filters {
    grid-template-columns: 1fr;
  }
}

/* Tourism visual refresh based on the Localiza/Passeios Morro palette. */
:root {
  --ink: #101820;
  --muted: #647076;
  --paper: #f7fbfb;
  --surface: #ffffff;
  --reef: #58b9ae;
  --reef-dark: #0f7f7a;
  --ocean: #0b6d83;
  --aqua: #64c8be;
  --coral: #ff8a16;
  --coral-dark: #e96f00;
  --sun: #ffbd45;
  --sand: #fff3dc;
  --foam: #e7fbf8;
  --line: #dcecea;
  --shadow: 0 20px 46px rgba(16, 24, 32, 0.13);
  --button-shadow: 0 16px 28px rgba(255, 138, 22, 0.3);
}

body {
  background:
    linear-gradient(180deg, rgba(233, 251, 251, 0.85), rgba(243, 248, 251, 0) 420px),
    var(--paper);
}

.site-header {
  background:
    radial-gradient(circle at 12% 10%, rgba(88, 185, 174, 0.22), transparent 28%),
    linear-gradient(90deg, #101820, #162430);
  border-bottom: 4px solid var(--coral);
}

.brand {
  gap: 12px;
  font-size: 17px;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  min-height: 690px;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.9), rgba(15, 127, 122, 0.56), rgba(255, 138, 22, 0.12)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.34), rgba(16, 24, 32, 0));
}

.hero-content {
  padding-block: 18px;
}

.hero h1 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.94);
}

.search-panel {
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.98);
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  position: relative;
}

.section-heading h2,
.split-section h2,
.page-hero h1,
.cta-section h2 {
  color: var(--reef-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 243, 220, 0.97), rgba(231, 251, 248, 0.94)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 7vw, 90px);
  bottom: -42px;
  width: 210px;
  height: 110px;
  border-radius: 210px 210px 0 0;
  background: radial-gradient(circle at 50% 100%, var(--sun), var(--coral));
  opacity: 0.18;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.transfer-hero {
  background:
    linear-gradient(135deg, rgba(233, 251, 251, 0.95), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.salvador-hero {
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.95), rgba(255, 255, 255, 0.88)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.tide-hero {
  background:
    linear-gradient(135deg, rgba(233, 251, 251, 0.96), rgba(255, 244, 223, 0.88)),
    url("https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
}

.tide-seo-intro,
.tide-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.tide-seo-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(88, 185, 174, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--reef-dark);
  font-weight: 900;
}

.tide-today-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(88, 185, 174, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 138, 22, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(233,251,251,0.88));
  box-shadow: 0 18px 38px rgba(16, 24, 32, 0.1);
}

.tide-today-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--reef), var(--sun), var(--coral));
  animation: tideTipFlow 2.8s ease-in-out infinite alternate;
}

.tide-today-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 138, 22, 0.13);
  pointer-events: none;
}

.tide-tip-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
}

.tide-tip-kicker {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tide-tip-body strong {
  color: var(--reef-dark);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.tide-today-card p {
  margin: 5px 0 0;
  color: #102f46;
  font-weight: 900;
}

.tide-today-card .primary-button {
  position: relative;
  z-index: 1;
}

.tide-tip-body em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.tide-date-badge {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.tide-today-card.is-pool-day .tide-date-badge {
  background: var(--reef-dark);
}

.tide-today-card.is-alert-day .tide-date-badge {
  background: var(--ink);
}

.tide-date-badge small {
  margin-top: 2px;
  font-size: 10px;
  letter-spacing: .04em;
}

@keyframes tideTipFlow {
  from { transform: translateX(-10px); opacity: 0.72; }
  to { transform: translateX(10px); opacity: 1; }
}

.tide-widget-section {
  padding-top: 0;
}

.tide-widget-shell {
  position: relative;
  overflow: hidden;
  --tide-widget-height: 640px;
  --tide-widget-crop-top: 0px;
  border: 1px solid rgba(6, 70, 127, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 138, 22, 0.12), transparent 28%),
    #fff;
  box-shadow: 0 24px 54px rgba(16, 24, 32, 0.1);
}

.tide-widget-embed {
  height: var(--tide-widget-height);
  min-height: 360px;
  overflow: hidden;
}

.tide-widget-embed iframe {
  display: block;
  width: 100% !important;
  min-height: calc(var(--tide-widget-height) + var(--tide-widget-crop-top));
  border: 0;
  transform: translateY(calc(var(--tide-widget-crop-top) * -1));
}

.tide-widget-fallback {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 280px;
  padding: 34px;
  text-align: center;
}

.tide-widget-fallback p {
  max-width: 620px;
  margin: 0;
  color: #102f46;
  font-size: 1.08rem;
  font-weight: 800;
}

.is-hidden {
  display: none !important;
}

.tide-tab-actions {
  display: inline-flex;
  padding: 4px;
  border: 1px solid rgba(6, 70, 127, 0.1);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.08);
}

.tide-tab-actions button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.tide-tab-actions button.active {
  background: var(--ink);
  color: #fff;
}

.tide-calendar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tide-day-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(6, 70, 127, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.08);
}

.tide-day-card.is-good {
  border-color: rgba(4, 204, 140, 0.55);
  background: linear-gradient(180deg, rgba(231, 255, 246, 0.95), #fff);
}

.tide-good-label {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  place-items: center;
  min-height: 26px;
  background: #09c98d;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tide-day-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.tide-day-card header strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.tide-day-card header span {
  color: #7d8793;
  font-size: 11px;
  font-weight: 900;
}

.tide-event {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  color: var(--reef-dark);
  font-weight: 900;
}

.tide-event small {
  color: #7d8793;
}

.tide-event.is-high,
.tide-event.is-low {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: end;
  gap: 2px;
  padding: 32px 12px 10px;
  border-radius: 16px;
  overflow: hidden;
}

.tide-event.is-high {
  color: #d9334f;
  background: rgba(255, 122, 0, 0.1);
}

.tide-event.is-low {
  color: #0f9f6e;
  background: rgba(88, 185, 174, 0.12);
}

.tide-event.is-high::before,
.tide-event.is-low::before,
.tide-widget-shell .mymento-tide-widget-root .mm-high::before,
.tide-widget-shell .mymento-tide-widget-root .mm-low::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 14px;
  width: 40px;
  height: 12px;
  border-radius: 999px;
  opacity: .95;
  animation: morroTideWave 2.4s ease-in-out infinite;
}

.tide-event.is-high::before,
.tide-widget-shell .mymento-tide-widget-root .mm-high::before {
  background:
    radial-gradient(circle at 18% 50%, #d9334f 0 8px, transparent 9px),
    radial-gradient(circle at 50% 42%, #d9334f 0 10px, transparent 11px),
    radial-gradient(circle at 82% 50%, #d9334f 0 8px, transparent 9px);
}

.tide-event.is-low::before,
.tide-widget-shell .mymento-tide-widget-root .mm-low::before {
  height: 8px;
  background:
    radial-gradient(ellipse at 20% 50%, #0f9f6e 0 9px, transparent 10px),
    radial-gradient(ellipse at 55% 48%, #0f9f6e 0 7px, transparent 8px),
    radial-gradient(ellipse at 86% 52%, #0f9f6e 0 8px, transparent 9px);
}

@keyframes morroTideWave {
  0%, 100% { transform: translateX(0) scaleX(1); }
  50% { transform: translateX(5px) scaleX(1.08); }
}

.tide-guide-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.tide-guide-grid article,
.legal-note {
  padding: 24px;
  border: 1px solid rgba(6, 70, 127, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 24, 32, 0.08);
}

.tide-guide-grid h2 {
  margin: 8px 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.tide-guide-grid p,
.legal-note p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-note {
  margin-bottom: 50px;
  padding-block: 18px;
}

.tour-card,
.catalog-card,
.compare-card,
.metrics-grid article,
.article-list article,
.tide-card,
.table-wrap {
  border: 1px solid rgba(6, 69, 125, 0.1);
  box-shadow: 0 18px 38px rgba(4, 45, 83, 0.11);
}

.tour-card,
.catalog-card,
.compare-card {
  position: relative;
}

.tour-card::after,
.catalog-card::after,
.compare-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--aqua));
}

.tour-card img,
.catalog-card img,
.tour-card.wide img {
  filter: saturate(1.08) contrast(1.02);
}

.tag {
  background: rgba(255, 120, 0, 0.12);
  color: var(--coral-dark);
}

.tag.sea {
  background: rgba(25, 183, 189, 0.14);
  color: #057076;
}

.tag.alt {
  background: rgba(255, 194, 71, 0.28);
  color: #835300;
}

.price-row {
  min-height: 82px;
  background:
    linear-gradient(135deg, rgba(255, 244, 223, 0.96), rgba(233, 251, 251, 0.9));
  border-color: rgba(255, 120, 0, 0.2);
}

.price-row strong {
  color: var(--reef-dark);
}

.price-row strong::first-letter {
  color: var(--coral);
}

.compare-prices {
  background: linear-gradient(135deg, rgba(233, 251, 251, 0.95), rgba(255, 244, 223, 0.88));
  border-color: rgba(25, 183, 189, 0.2);
}

.compare-prices div {
  border: 1px solid rgba(6, 69, 125, 0.08);
}

.compare-prices strong {
  color: var(--reef-dark);
}

.primary-button,
.button-link,
.search-panel button,
.header-cta {
  min-height: 52px;
  background: linear-gradient(135deg, var(--coral), #ff8f1f);
  letter-spacing: 0;
}

.primary-button::after,
.button-link::after,
.header-cta::after {
  content: ">";
  margin-left: 10px;
  font-weight: 900;
}

.feature-band {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.94), rgba(15, 127, 122, 0.88)),
    url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
}

.feature-band .eyebrow,
.article-grid span {
  color: var(--sun);
}

.article-grid a {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(88, 185, 174, 0.82)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
}

.filters button {
  border-color: rgba(6, 69, 125, 0.16);
}

.filters button.active {
  background: linear-gradient(135deg, var(--reef), var(--ocean));
}

.status.good {
  background: linear-gradient(135deg, var(--aqua), var(--ocean));
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.98), rgba(15, 127, 122, 0.9)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
}

@media (max-width: 900px) {
  .brand-logo {
    width: 78px;
    height: 46px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(15, 127, 122, 0.72));
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 14px;
  }

  .brand-logo {
    width: 68px;
    height: 42px;
  }

  .page-hero::after {
    width: 140px;
    height: 72px;
    bottom: -28px;
  }
}

/* Final interaction polish: functional filters and cleaner prices. */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 10px;
  border: 1px solid rgba(88, 185, 174, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.06);
}

.filters button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(88, 185, 174, 0.22);
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: #53626a;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.filters button:hover {
  border-color: var(--reef-dark);
  color: var(--reef-dark);
  transform: translateY(-1px);
}

.filters button.active {
  background: var(--reef-dark);
  color: #fff;
  border-color: var(--reef-dark);
}

.filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.08);
  color: inherit;
  font-size: 12px;
  font-weight: 950;
}

.filters button.active .filter-count {
  background: rgba(255, 255, 255, 0.24);
}

.catalog-card {
  transition: opacity .2s ease, transform .2s ease;
}

.catalog-card[hidden] {
  display: none;
}

.price-row {
  min-height: 82px;
  background: #f4fbfa;
  border: 1px solid rgba(88, 185, 174, 0.28);
}

.price-row strong {
  color: var(--reef-dark);
  font-variant-numeric: tabular-nums;
}

.price-row strong::first-letter {
  color: inherit;
}

.compare-prices {
  background: #f4fbfa;
}

.compare-prices strong {
  color: var(--reef-dark);
}

@media (max-width: 560px) {
  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 24px;
  }

  .filters button {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .filters {
    grid-template-columns: 1fr;
  }
}

/* Header logo-only alignment. */
.site-header {
  justify-content: center;
  min-height: 78px;
}

.site-header .brand {
  max-width: none;
  font-size: 0;
  line-height: 0;
}

.site-header .brand > :not(.brand-logo) {
  display: none;
}

.brand-logo {
  width: 128px;
  height: 56px;
}

@media (max-width: 900px) {
  .site-header {
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  .site-header .brand {
    max-width: none;
  }

  .brand-logo {
    width: 108px;
    height: 50px;
  }
}

/* Header composition: logo left, navigation centered, CTA right. */
@media (min-width: 901px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: normal;
    column-gap: clamp(28px, 5vw, 72px);
    padding-block: 8px;
    padding-inline: clamp(28px, 5vw, 64px);
  }

  .site-header .site-nav {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header .header-cta {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

/* Rebuilt header v3: stable desktop/mobile alignment and cropped logo asset. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  min-height: 0;
  padding: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(88, 185, 174, 0.18), transparent 28%),
    linear-gradient(90deg, #101820, #162430);
  border-bottom: 4px solid var(--coral);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.18);
}

.header-inner {
  width: min(100%, 1420px);
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(22px, 4vw, 46px);
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  width: 170px;
  height: 74px;
  max-width: none;
  font-size: 0;
  line-height: 0;
}

.site-header .brand-logo {
  width: 170px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.site-header .brand-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.site-header .site-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 16px;
}

.site-header .header-cta {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  min-height: 52px;
}

.site-header .menu-toggle {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 92px;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 0 28px;
  }

  .site-header .brand {
    grid-column: 1;
    width: 160px;
    height: 82px;
  }

  .site-header .brand-logo {
    width: 160px;
    height: 82px;
  }

  .site-header .brand-logo img {
    max-width: 160px;
    max-height: 78px;
  }

  .site-header .menu-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    background: #fff;
    color: var(--reef-dark);
    font-weight: 900;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: none;
    padding: 10px 0 16px;
  }

  .site-header .site-nav.open {
    display: grid;
    gap: 0;
  }

  .site-header .site-nav a {
    padding: 14px 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 86px;
    padding: 0 22px;
  }

  .site-header .brand,
  .site-header .brand-logo {
    width: 150px;
    height: 76px;
  }

  .site-header .brand-logo img {
    max-width: 150px;
    max-height: 72px;
  }

  .site-header .menu-toggle {
    min-height: 48px;
    padding: 0 20px;
  }
}

/* Direct contact cards. */
.contact-options {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.contact-options h2 {
  color: var(--reef-dark);
}

.contact-options p {
  color: var(--muted);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-option {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 138, 22, 0.9), transparent 30%),
    linear-gradient(135deg, #101820, var(--reef-dark));
  box-shadow: 0 18px 38px rgba(16, 24, 32, 0.14);
  transition: transform .18s ease, box-shadow .18s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(16, 24, 32, 0.2);
}

.contact-option::before {
  content: none;
  position: absolute;
  top: 18px;
  left: 20px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-option-avatar {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.contact-option-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-option-icon {
  background: rgba(255, 255, 255, 0.18);
}

.contact-option span,
.contact-option strong {
  position: relative;
  z-index: 1;
}

.contact-option span {
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-option .contact-option-avatar {
  color: #fff;
  font-size: 24px;
  text-transform: none;
}

.contact-option strong {
  max-width: 180px;
  font-size: 24px;
  line-height: 1.12;
}

@media (max-width: 900px) {
  .contact-options,
  .contact-options-grid {
    grid-template-columns: 1fr;
  }
}

/* Elementor hybrid mode. */
.elementor-localiza-page {
  overflow-x: hidden;
  background: var(--sand);
}

.elementor-localiza-page > .elementor,
.elementor-localiza-page > .entry-content {
  width: 100%;
}

.elementor-localiza-page .localiza-block {
  width: min(100%, 100vw);
}

.elementor-localiza-page .section.localiza-block {
  margin-left: auto;
  margin-right: auto;
}

.elementor-localiza-page .hero.localiza-block {
  min-height: min(760px, calc(100vh - 90px));
}

.localiza-block .section-heading p {
  max-width: 760px;
}

@media (max-width: 760px) {
  .elementor-localiza-page .hero.localiza-block {
    min-height: auto;
  }
}

/* Link-in-bio page. */
.links-standalone {
  background: linear-gradient(180deg, #07345f 0%, #062f2e 100%);
}

.links-page {
  min-height: 100vh;
  padding: 34px 16px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(88, 185, 174, 0.24), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(255, 138, 22, 0.18), transparent 30%),
    linear-gradient(180deg, #07345f 0%, #062f2e 100%);
}

.links-shell {
  width: min(560px, 100%);
  margin: 0 auto;
}

.links-profile {
  text-align: center;
  margin: 0 0 28px;
}

.links-profile img {
  width: 132px;
  max-width: 45vw;
  height: auto;
  object-fit: contain;
}

.links-profile h1 {
  margin: 12px 0 6px;
  color: #fff;
  font-size: 28px;
}

.links-profile p {
  max-width: 420px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
}

.links-section {
  margin: 24px 0;
}

.links-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.links-section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
}

.links-list {
  display: grid;
  gap: 10px;
}

.links-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.links-card:hover {
  transform: translateY(-2px);
  border-color: rgba(88, 185, 174, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.links-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(88, 185, 174, 0.16);
}

.links-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.links-icon span {
  font-size: 24px;
}

.links-card-copy {
  min-width: 0;
}

.links-card-copy strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.links-card-copy small {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.links-arrow {
  color: var(--sun);
  font-size: 28px;
  line-height: 1;
}

@media (max-width: 420px) {
  .links-card {
    grid-template-columns: 48px 1fr auto;
    padding: 10px 12px;
  }

  .links-card-copy strong {
    font-size: 15px;
  }
}

/* Contact cards final sizing guard. */
.contact-options .contact-option {
  min-height: 154px;
  align-content: end;
}

.contact-options .contact-option .contact-option-avatar {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  margin: 0 0 2px !important;
  padding: 0 !important;
  line-height: 1 !important;
  flex: 0 0 48px !important;
}

.contact-options .contact-option .contact-option-avatar img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  border-radius: inherit !important;
}

.contact-options .contact-option .contact-option-icon {
  font-size: 28px !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

@media (max-width: 900px) {
  .contact-options .contact-option {
    min-height: 150px;
  }

  .contact-options .contact-option .contact-option-avatar {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    flex-basis: 42px !important;
  }

  .contact-options .contact-option .contact-option-icon {
    font-size: 25px !important;
  }
}

.contact-options .contact-option > img,
.contact-options .contact-option picture,
.contact-options .contact-option figure {
  display: none !important;
}

.contact-options .contact-option .contact-option-avatar,
.contact-options .contact-option .contact-option-avatar * {
  box-sizing: border-box !important;
}

/* Individual passeio pages. */
.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.tour-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(16, 24, 32, 0.16);
}

.tour-detail-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(15, 127, 122, 0.16);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(16, 24, 32, 0.1);
}

.tour-detail-card h2 {
  margin: 12px 0;
  color: #102f46;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.tour-detail-card p {
  color: #526171;
  font-size: 1.02rem;
  line-height: 1.7;
}

.tour-gallery-section {
  padding-top: 0;
}

.gallery-controls {
  display: inline-flex;
  gap: 8px;
}

.gallery-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 70, 127, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--reef-dark);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.08);
}

.tour-gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 46%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 4px 2px 16px;
  scrollbar-width: thin;
}

.tour-gallery-slide {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
  scroll-snap-align: start;
}

.tour-gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 0;
}

.detail-info-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(15, 127, 122, 0.14);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(16, 24, 32, 0.08);
}

.detail-info-card h2 {
  margin: 10px 0 16px;
  color: #102f46;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.detail-info-card p {
  color: #526171;
  line-height: 1.7;
}

.detail-testimonials .detail-info-card {
  display: grid;
  gap: 14px;
}

.detail-testimonials .detail-info-card strong {
  color: var(--reef-dark);
}

@media (max-width: 980px) {
  .tour-detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .tour-detail-card .primary-button {
    width: 100%;
    justify-content: center;
  }

  .tour-gallery-track {
    grid-auto-columns: minmax(260px, 78%);
  }

  .tide-seo-intro,
  .tide-guide-grid {
    grid-template-columns: 1fr;
  }

  .tide-today-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tide-today-card .primary-button {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .tide-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .card-stats,
  .detail-stats,
  .compare-prices {
    grid-template-columns: 1fr;
  }

  .stat-pill,
  .compare-prices .stat-pill,
  .compare-prices div {
    min-height: 64px;
  }

  .tour-gallery-track {
    grid-auto-columns: minmax(240px, 92%);
    gap: 12px;
  }

  .gallery-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .tide-widget-embed {
    min-height: 420px;
  }

  .tide-widget-embed iframe {
    min-height: 620px;
  }

  .tide-calendar {
    grid-template-columns: 1fr;
  }

  .tide-tab-actions {
    width: 100%;
  }

  .tide-tab-actions button {
    flex: 1;
  }

  .tide-guide-grid article,
  .legal-note {
    padding: 18px;
  }
}

/* Compact card info chips: keeps duration, price and format readable. */
.tour-card .card-stats,
.catalog-card .card-stats,
.tour-detail-card .detail-stats {
  display: grid !important;
  gap: 10px !important;
  margin: 16px 0 18px !important;
}

.tour-card .card-stats,
.catalog-card .card-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.tour-card .stat-pill,
.catalog-card .stat-pill,
.tour-detail-card .stat-pill {
  min-width: 0 !important;
  min-height: 54px !important;
  display: grid !important;
  align-content: center !important;
  gap: 3px !important;
  padding: 9px 10px !important;
  border: 1px solid rgba(88, 185, 174, 0.24) !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(244, 251, 250, 0.98), rgba(255, 250, 240, 0.92)) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}

.tour-card .card-stats .stat-pill:first-child,
.catalog-card .card-stats .stat-pill:first-child {
  grid-column: 1 / -1 !important;
  order: -1 !important;
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 12px 14px !important;
  border-color: rgba(255, 132, 18, 0.22) !important;
  background: linear-gradient(135deg, rgba(255, 244, 225, 0.98), rgba(232, 252, 249, 0.96)) !important;
}

.tour-card .stat-pill span,
.catalog-card .stat-pill span,
.tour-detail-card .stat-pill span {
  display: block !important;
  margin: 0 !important;
  color: #748292 !important;
  font-size: 9px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}

.tour-card .stat-pill strong,
.catalog-card .stat-pill strong,
.tour-detail-card .stat-pill strong {
  display: block !important;
  margin: 0 !important;
  color: var(--reef-dark) !important;
  font-size: clamp(15px, 3.6vw, 20px) !important;
  line-height: 1.02 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

.tour-card .card-stats .stat-pill:first-child strong,
.catalog-card .card-stats .stat-pill:first-child strong {
  color: var(--coral) !important;
  font-size: clamp(24px, 7vw, 34px) !important;
  letter-spacing: 0 !important;
}

.tour-detail-card .detail-stats {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr)) !important;
  padding: 10px !important;
  border: 1px solid rgba(88, 185, 174, 0.22) !important;
  border-radius: 22px !important;
  background: #f4fbfa !important;
}

.tour-detail-card .detail-stats .stat-pill {
  background: #fff !important;
}

@media (max-width: 430px) {
  .tour-card .card-stats,
  .catalog-card .card-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tour-card .stat-pill,
  .catalog-card .stat-pill {
    min-height: 50px !important;
    padding: 8px 7px !important;
    border-radius: 14px !important;
  }

  .tour-card .stat-pill strong,
  .catalog-card .stat-pill strong {
    font-size: 17px !important;
  }

  .tour-card .card-stats .stat-pill:first-child strong,
  .catalog-card .card-stats .stat-pill:first-child strong {
    font-size: 28px !important;
  }
}

.tide-widget-shell .tide-widget-embed {
  height: var(--tide-widget-height) !important;
}

.tide-widget-shell.is-script-widget .tide-widget-embed {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

.tide-widget-shell .tide-widget-embed iframe {
  min-height: calc(var(--tide-widget-height) + var(--tide-widget-crop-top)) !important;
  transform: translateY(calc(var(--tide-widget-crop-top) * -1)) !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-footer,
.tide-widget-shell .mymento-tide-widget-root .mm-brand,
.tide-widget-shell .mymento-tide-widget-root .mm-disclaimer {
  display: none !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-card {
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(6, 70, 127, 0.12) !important;
  border-radius: 28px !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: inherit !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-header {
  display: none !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-body {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)) !important;
  gap: 14px !important;
  justify-content: stretch !important;
  padding: clamp(16px, 3vw, 24px) !important;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 138, 22, 0.1), transparent 26%),
    #f7fbfb !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day-link {
  min-width: 0 !important;
  flex: none !important;
  text-decoration: none !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day {
  height: 100% !important;
  min-height: 176px !important;
  padding: 0 12px 12px !important;
  border: 1px solid rgba(6, 70, 127, 0.11) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08) !important;
  text-align: left !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day.mm-today {
  border: 2px solid var(--coral) !important;
  background: linear-gradient(180deg, rgba(255, 244, 225, 0.9), #fff) !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-today-label {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;
  padding: 0 8px !important;
  border-radius: 999px !important;
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-date {
  display: block !important;
  margin: 0 -12px 12px !important;
  padding: 12px 14px !important;
  border-bottom: 0 !important;
  background: #102f46 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-tide {
  margin: 8px 0 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-high,
.tide-widget-shell .mymento-tide-widget-root .mm-low {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: end !important;
  gap: 2px !important;
  min-height: 84px !important;
  padding: 34px 12px 10px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  overflow: hidden !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-high {
  color: #d9334f !important;
  background: rgba(255, 122, 0, 0.1) !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-low {
  color: #0f9f6e !important;
  background: rgba(15, 159, 110, 0.11) !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-time {
  margin: 0 !important;
  color: #657283 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

@media (max-width: 520px) {
  .tide-widget-shell .mymento-tide-widget-root .mm-body {
    grid-template-columns: 1fr !important;
    padding: 12px !important;
  }
}

/* Final mobile/readability fixes for CTA buttons and transfer info blocks. */
.primary-button,
.button-link,
.search-panel button,
.header-cta {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.18;
  overflow-wrap: break-word;
  word-break: normal;
}

.tour-detail-card .primary-button,
.cta-section .primary-button,
.tide-guide-grid .primary-button {
  width: 100%;
  justify-content: center;
}

.compare-card .compare-prices {
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr)) !important;
  gap: 12px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices div {
  min-height: 76px !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(88, 185, 174, 0.22) !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, rgba(244, 251, 250, 0.98), rgba(255, 250, 240, 0.94)) !important;
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.06) !important;
}

.compare-card .compare-prices span {
  display: block !important;
  margin-bottom: 5px !important;
  color: #778498 !important;
  font-size: 10px !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: .02em !important;
}

.compare-card .compare-prices strong {
  display: block !important;
  color: var(--reef-dark) !important;
  font-size: clamp(20px, 2.4vw, 28px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

@media (max-width: 560px) {
  .tour-detail-card .detail-stats {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .tour-detail-card .detail-stats .stat-pill {
    min-height: 64px !important;
    padding: 12px 14px !important;
  }

  .compare-card .compare-prices {
    grid-template-columns: 1fr !important;
  }

  .compare-card .compare-prices .stat-pill,
  .compare-card .compare-prices div {
    min-height: 68px !important;
    padding: 12px 14px !important;
  }
}

@media (max-width: 390px) {
  .tour-card .stat-pill strong,
  .catalog-card .stat-pill strong,
  .tour-detail-card .stat-pill strong {
    font-size: 15px !important;
  }

  .tour-card .card-stats .stat-pill:first-child strong,
  .catalog-card .card-stats .stat-pill:first-child strong {
    font-size: 24px !important;
  }
}

/* Premium tide cards inspired by the Mymento calendar layout. */
.tide-manual-summary .tide-calendar {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 16px !important;
}

.tide-manual-summary .tide-day-card {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: start !important;
  gap: 11px !important;
  min-height: 306px !important;
  padding: 0 16px 16px !important;
  border: 1px solid rgba(6, 70, 127, 0.13) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 16px 34px rgba(16, 24, 32, 0.08) !important;
}

.tide-manual-summary .tide-day-card.is-good {
  border-color: rgba(255, 122, 0, 0.72) !important;
  background: #fff !important;
}

.tide-manual-summary .tide-day-card header {
  grid-column: 1 / -1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 9px !important;
  min-height: 58px !important;
  margin: 0 -16px 4px !important;
  padding: 12px 16px !important;
  border-radius: 15px 15px 0 0 !important;
  background: #102f46 !important;
}

.tide-manual-summary .tide-day-card header strong {
  color: #fff !important;
  font-size: 31px !important;
  line-height: .95 !important;
  letter-spacing: 0 !important;
}

.tide-manual-summary .tide-day-card header span {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  text-transform: none !important;
}

.tide-manual-summary .tide-good-label {
  inset: 16px 14px auto auto !important;
  z-index: 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-height: 26px !important;
  padding: 0 11px !important;
  border-radius: 999px !important;
  background: var(--coral) !important;
  color: #fff !important;
  font-size: 10px !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

.tide-manual-summary .tide-event.is-high,
.tide-manual-summary .tide-event.is-low {
  display: grid !important;
  align-content: end !important;
  gap: 2px !important;
  min-height: 104px !important;
  padding: 44px 12px 13px !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.tide-manual-summary .tide-event.is-high {
  color: #e43f5f !important;
  background: #fff0ef !important;
}

.tide-manual-summary .tide-event.is-low {
  color: #0f9f6e !important;
  background: #eaf8f3 !important;
}

.tide-manual-summary .tide-event.is-high::before,
.tide-manual-summary .tide-event.is-low::before {
  left: 12px !important;
  top: 18px !important;
  width: 48px !important;
  height: 13px !important;
}

.tide-manual-summary .tide-event.is-high::after,
.tide-manual-summary .tide-event.is-low::after {
  position: absolute;
  left: 12px;
  top: 38px;
  color: #778498;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tide-manual-summary .tide-event.is-high::after {
  content: "Alta";
}

.tide-manual-summary .tide-event.is-low::after {
  content: "Baixa";
}

.tide-manual-summary .tide-event span {
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  color: inherit !important;
}

.tide-manual-summary .tide-event small {
  color: #102f46 !important;
  font-size: 13px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  order: -1;
}

.tide-widget-shell .mymento-tide-widget-root .mm-body {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 16px !important;
  padding: clamp(16px, 3vw, 28px) !important;
  background: #f6fbfb !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-content: start !important;
  gap: 11px !important;
  min-height: 306px !important;
  padding: 0 16px 16px !important;
  border-radius: 16px !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day.mm-today {
  border: 2px solid #e43f5f !important;
  background: #fff !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-date {
  grid-column: 1 / -1 !important;
  min-height: 58px !important;
  margin: 0 -16px 4px !important;
  padding: 13px 16px !important;
  border-radius: 15px 15px 0 0 !important;
  background: #102f46 !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 900 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-today-label {
  position: absolute !important;
  top: 16px !important;
  right: 14px !important;
  z-index: 2 !important;
  background: #e43f5f !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-tide {
  min-width: 0 !important;
  margin: 0 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-high,
.tide-widget-shell .mymento-tide-widget-root .mm-low {
  min-height: 104px !important;
  padding: 44px 12px 13px !important;
  border-radius: 10px !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-high {
  color: #e43f5f !important;
  background: #fff0ef !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-low {
  color: #0f9f6e !important;
  background: #eaf8f3 !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-high::before,
.tide-widget-shell .mymento-tide-widget-root .mm-low::before {
  left: 12px !important;
  top: 18px !important;
  width: 48px !important;
  height: 13px !important;
}

@media (max-width: 640px) {
  .tide-manual-summary .tide-calendar,
  .tide-widget-shell .mymento-tide-widget-root .mm-body {
    grid-template-columns: 1fr !important;
  }

  .tide-manual-summary .tide-day-card,
  .tide-widget-shell .mymento-tide-widget-root .mm-day {
    min-height: 0 !important;
  }
}

/* Stable gallery carousel: one index per click, no wrapped grid. */
.tour-gallery-track {
  display: flex !important;
  gap: 18px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  scroll-padding-inline: 2px !important;
  padding: 4px 2px 18px !important;
  -webkit-overflow-scrolling: touch !important;
}

.tour-gallery-slide {
  flex: 0 0 min(620px, 86vw) !important;
  scroll-snap-align: start !important;
}

.gallery-controls button:disabled {
  opacity: .38;
  cursor: not-allowed;
}

@media (min-width: 981px) {
  .tour-gallery-slide {
    flex-basis: min(620px, 48%) !important;
  }
}

@media (max-width: 560px) {
  .tour-gallery-slide {
    flex-basis: min(92vw, 360px) !important;
  }
}

/* Price discount controls. */
.stat-old-price {
  display: block;
  margin: 0;
  color: #8a96a6;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(228, 63, 95, 0.78);
}

.stat-discount-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 122, 18, 0.14);
  color: var(--coral);
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-card .card-stats .stat-pill:first-child,
.catalog-card .card-stats .stat-pill:first-child {
  flex-wrap: wrap !important;
}

.tour-card .card-stats .stat-pill:first-child .stat-old-price,
.catalog-card .card-stats .stat-pill:first-child .stat-old-price {
  margin-left: auto;
}

.tour-card .card-stats .stat-pill:first-child .stat-discount-badge,
.catalog-card .card-stats .stat-pill:first-child .stat-discount-badge {
  order: -1;
}

/* Brand-color tide calendar: teal headers with red/green tide heights only. */
.tide-manual-summary .tide-day-card header,
.tide-widget-shell .mymento-tide-widget-root .mm-date {
  background: linear-gradient(135deg, #0b6f6a, #0f9f8f) !important;
}

.tide-widget-shell .mymento-tide-widget-root .mm-day.mm-today,
.tide-manual-summary .tide-day-card.is-good {
  border-color: rgba(255, 122, 18, 0.72) !important;
}

.tide-manual-summary .tide-good-label,
.tide-widget-shell .mymento-tide-widget-root .mm-today-label {
  background: var(--coral) !important;
}

.tide-event.is-high::before,
.tide-event.is-low::before,
.tide-widget-shell .mymento-tide-widget-root .mm-high::before,
.tide-widget-shell .mymento-tide-widget-root .mm-low::before {
  width: 56px !important;
  height: 18px !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  animation: morroTideLine 2.3s ease-in-out infinite !important;
}

.tide-event.is-high::before,
.tide-widget-shell .mymento-tide-widget-root .mm-high::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11 C10 3 18 3 26 11 S42 19 50 11 S58 3 62 10' fill='none' stroke='%23e43f5f' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.tide-event.is-low::before,
.tide-widget-shell .mymento-tide-widget-root .mm-low::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10 C10 13 18 13 26 10 S42 7 50 10 S58 13 62 10' fill='none' stroke='%230f9f6e' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

@keyframes morroTideLine {
  0%, 100% { transform: translateX(0); opacity: .92; }
  50% { transform: translateX(4px); opacity: 1; }
}

/* SEO text block on home, kept calm and readable for visitors and Google. */
.home-seo-content {
  max-width: 980px;
}

.home-seo-content h2 {
  max-width: 780px;
}

.home-seo-content div {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .home-seo-content div {
    font-size: 1rem;
    line-height: 1.72;
  }
}

/* Dicas hub and article pages. */
.dicas-intro-band {
  align-items: center;
}

.dicas-hub-section .section-heading {
  align-items: end;
}

.dicas-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.dica-hub-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.dica-hub-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dica-hub-card > div,
a.dica-hub-card {
  padding: 22px;
}

.dica-hub-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 138, 22, .12);
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.dica-hub-card h2,
.dica-hub-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
  font-weight: 950;
}

.dica-hub-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.dica-hub-card a,
.dica-hub-card em {
  color: var(--reef-dark);
  font-style: normal;
  font-weight: 950;
}

.dica-article-shell {
  max-width: 1040px;
}

.dica-cover {
  margin: 0 0 34px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.dica-cover img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.dica-cover figcaption {
  padding: 12px 18px 0;
  color: #667789;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.dica-article-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.dica-article-content h2 {
  margin: 38px 0 12px;
  color: var(--reef-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.dica-article-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.dica-article-content p {
  margin: 0 0 18px;
}

.dica-article-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.dica-article-content li {
  margin: 7px 0;
}

.dica-article-content .article-note {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(255, 138, 22, 0.22);
  border-left: 5px solid var(--coral);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 244, 223, 0.92), rgba(233, 251, 251, 0.72));
  color: var(--ink);
  font-weight: 700;
}

.dica-article-content .article-small {
  max-width: 720px;
  margin: -4px 0 22px;
  color: #667789;
  font-size: 0.92rem;
  line-height: 1.65;
}

.article-color-teal { color: var(--reef-dark); font-weight: 900; }
.article-color-orange { color: var(--coral-dark); font-weight: 900; }
.article-color-blue { color: #295cb1; font-weight: 900; }
.article-color-muted { color: #667789; }
.article-small-inline { color: #667789; font-size: 0.9em; }

.dica-faq,
.dica-cta,
.related-dicas {
  max-width: 920px;
  margin: 42px auto 0;
}

.dica-service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 820px;
  margin: 34px auto 0;
}

.dica-service-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--reef-dark);
  font-weight: 900;
  text-decoration: none;
}

.dica-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(244, 251, 250, .98), rgba(255, 250, 240, .92));
  box-shadow: var(--shadow);
}

.dica-cta h2 {
  margin: 0 0 8px;
}

.dica-cta p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.related-dicas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .dicas-hub-grid,
  .related-dicas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dicas-hub-grid,
  .related-dicas-grid,
  .dica-cta {
    grid-template-columns: 1fr;
  }

  .dica-hub-card > div,
  a.dica-hub-card,
  .dica-cta {
    padding: 20px;
  }

  .dica-cover {
    border-radius: 22px;
  }

  .dica-article-content {
    font-size: 1rem;
    line-height: 1.72;
  }

  .dica-cta .primary-button {
    width: 100%;
    white-space: normal;
  }
}

/* Desktop alignment pass: stable card heights, readable stats and editable footer. */
.catalog-grid,
.card-grid {
  align-items: stretch;
}

.tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card > img {
  flex: 0 0 auto;
}

.catalog-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  height: 100%;
}

.catalog-card > img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.catalog-body,
.tour-card > div {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.catalog-body .primary-button,
.tour-card > div .primary-button {
  margin-top: auto;
  align-self: flex-start;
}

.tour-card .stat-pill strong,
.catalog-card .stat-pill strong,
.tour-detail-card .stat-pill strong,
.compare-card .compare-prices strong {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
  max-width: 100%;
}

.tour-card .stat-pill,
.catalog-card .stat-pill,
.tour-detail-card .stat-pill,
.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices div {
  overflow: hidden !important;
}

.compare-card .compare-prices {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)) !important;
  align-items: stretch !important;
}

.compare-card .compare-prices strong {
  font-size: clamp(21px, 2.4vw, 29px) !important;
  line-height: 1.08 !important;
}

.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices div {
  align-content: center !important;
}

.compare-actions {
  align-items: stretch;
}

.compare-actions .primary-button,
.compare-actions .button-link {
  min-width: min(220px, 100%);
}

@media (max-width: 980px) {
  .catalog-card {
    display: flex;
    flex-direction: column;
  }

  .catalog-card > img {
    height: 260px;
    min-height: 220px;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 138, 22, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(16, 24, 32, 0.97), rgba(15, 127, 122, 0.93));
  color: rgba(255, 255, 255, 0.82);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 34%);
  pointer-events: none;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(170px, 0.75fr) minmax(180px, 0.8fr);
  gap: 28px;
  padding: 46px 0 30px;
}

.footer-brand-block {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.site-footer .footer-logo {
  display: grid;
  place-items: center;
  width: 132px;
  max-width: 132px;
  min-height: 86px;
  margin: 0;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.site-footer .footer-logo img {
  display: block;
  width: auto;
  max-height: 70px;
  max-width: 112px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
}

.site-footer p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-cnpj,
.footer-security-note {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 8px 8px 0 0 !important;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
}

.footer-security-note {
  border-color: rgba(88, 185, 174, 0.45);
}

.footer-nav div {
  display: grid;
  gap: 6px;
}

.site-footer a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--sun);
}

.footer-whatsapp {
  min-height: 42px;
  margin-top: 8px !important;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff !important;
  box-shadow: var(--button-shadow);
}

.footer-trust-block {
  grid-column: 1 / -1;
  padding-top: 8px;
}

.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.footer-trust-item {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: auto !important;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}

.footer-trust-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--reef-dark);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.footer-trust-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-trust-item strong,
.footer-trust-item em {
  display: block;
}

.footer-trust-item strong {
  color: #fff;
  line-height: 1.2;
}

.footer-trust-item em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-style: normal;
  line-height: 1.35;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

@media (min-width: 900px) {
  .compare-card {
    align-items: stretch;
  }

  .compare-card > div:first-child {
    min-height: 190px;
  }
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block,
  .footer-trust-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .catalog-body .primary-button,
  .tour-card > div .primary-button,
  .card-actions .primary-button,
  .card-actions .button-link {
    align-self: stretch;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .footer-brand-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer .footer-logo {
    width: min(168px, 52vw);
    max-width: 52vw;
    min-height: 0;
    height: auto;
    padding: 8px;
    justify-self: start;
    overflow: hidden;
  }

  .site-footer .footer-logo img {
    width: auto !important;
    max-width: 150px !important;
    max-height: 74px !important;
  }

  .footer-trust-grid {
    gap: 8px;
  }

  .footer-trust-item {
    min-height: 64px;
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 9px;
  }

  .footer-trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* v64: compact fixed stat blocks and centered header WhatsApp CTA. */
.site-header .header-cta,
.header-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  min-width: 126px !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 22px !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.catalog-body,
.tour-card > div {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

.catalog-body .card-stats,
.tour-card > div .card-stats {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 10px !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-top: 18px !important;
}

.catalog-body .card-stats .stat-pill,
.tour-card > div .card-stats .stat-pill,
.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices > div {
  min-width: 0 !important;
  min-height: 62px !important;
  padding: 10px 12px !important;
  align-content: center !important;
  justify-content: stretch !important;
}

.catalog-body .card-stats .stat-pill:first-child,
.tour-card > div .card-stats .stat-pill:first-child {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(74px, auto) minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
}

.catalog-body .card-stats .stat-pill:first-child span,
.tour-card > div .card-stats .stat-pill:first-child span {
  grid-column: 1 !important;
}

.catalog-body .card-stats .stat-pill:first-child strong,
.tour-card > div .card-stats .stat-pill:first-child strong {
  grid-column: 2 !important;
  justify-self: end !important;
  text-align: right !important;
}

.stat-pill span,
.compare-card .compare-prices span {
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.stat-pill strong,
.compare-card .compare-prices strong {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

.catalog-body .card-stats .stat-pill:not(:first-child) strong,
.tour-card > div .card-stats .stat-pill:not(:first-child) strong {
  font-size: clamp(18px, 1.8vw, 24px) !important;
  line-height: 1.04 !important;
}

.catalog-body .card-stats .stat-pill:first-child strong,
.tour-card > div .card-stats .stat-pill:first-child strong {
  font-size: clamp(24px, 2.8vw, 34px) !important;
  line-height: 1 !important;
}

.compare-card .compare-prices {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 12px !important;
  margin-top: auto !important;
}

.compare-card .compare-prices strong {
  font-size: clamp(20px, 2vw, 29px) !important;
  line-height: 1.04 !important;
}

@media (max-width: 1180px) {
  .compare-card .compare-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .catalog-body .card-stats .stat-pill:not(:first-child) strong,
  .tour-card > div .card-stats .stat-pill:not(:first-child) strong,
  .compare-card .compare-prices strong {
    font-size: clamp(17px, 5.5vw, 24px) !important;
  }

  .compare-card .compare-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* v62: responsive menu, editable detail/value cards and safer text flow. */
.dica-hub-card {
  background: var(--card-bg, #fff) !important;
  color: var(--card-text, var(--ink)) !important;
  border-color: color-mix(in srgb, var(--card-accent, var(--line)) 32%, var(--line)) !important;
}

.dica-hub-card img {
  height: var(--card-image-height, auto) !important;
  max-height: 340px;
  object-fit: cover;
}

.dica-hub-card::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent, var(--coral)), var(--reef));
}

.dica-hub-card > div {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.dica-hub-card .tag-row,
.dica-hub-card .mini-card-row {
  margin-bottom: 14px;
}

.dica-hub-card .mini-card {
  display: grid !important;
  width: auto !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, rgba(244, 251, 250, .96), rgba(255, 250, 240, .9)) !important;
  color: var(--reef-dark) !important;
  text-transform: none !important;
}

.departure-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}

.departure-card {
  display: inline-grid;
  min-width: 118px;
  gap: 3px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 138, 22, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 247, 237, .96), rgba(239, 252, 249, .9));
  color: var(--reef-dark);
}

.departure-card strong {
  color: var(--coral);
  font-size: 10px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.departure-card em {
  color: var(--reef-dark);
  font-size: 16px;
  line-height: 1.1;
  font-style: normal;
  font-weight: 950;
}

.dica-hub-card > div > a {
  margin-top: auto;
}

.tour-card p,
.catalog-card p,
.compare-card p,
.detail-info-card p,
.dica-hub-card p {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.stat-pill {
  min-width: 0 !important;
}

.tour-card .stat-pill strong,
.catalog-card .stat-pill strong,
.tour-detail-card .stat-pill strong,
.compare-card .compare-prices strong {
  font-size: clamp(18px, 2.3vw, 30px) !important;
  letter-spacing: 0 !important;
}

.tour-card .card-stats .stat-pill:first-child strong,
.catalog-card .card-stats .stat-pill:first-child strong {
  font-size: clamp(24px, 3.2vw, 36px) !important;
}

.compare-card .compare-prices {
  align-items: stretch !important;
}

.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices div {
  overflow: hidden !important;
}

.card-actions,
.compare-actions {
  align-items: stretch !important;
}

.card-actions .primary-button,
.card-actions .button-link,
.compare-actions .primary-button,
.compare-actions .button-link,
.tour-detail-card .primary-button {
  padding-left: 18px !important;
  padding-right: 18px !important;
  overflow-wrap: anywhere !important;
}

@media (min-width: 861px) and (max-width: 1120px) {
  .site-header {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .site-header .header-inner {
    grid-template-columns: 160px minmax(0, 1fr) 150px !important;
    gap: 14px !important;
  }

  .site-header .brand-logo {
    width: 160px !important;
    height: 72px !important;
    max-width: 160px !important;
  }

  .site-header .brand-logo img {
    max-width: 156px !important;
    max-height: 70px !important;
  }

  .site-header .site-nav,
  .site-nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(9px, 1.1vw, 15px) !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: clamp(12px, 1.35vw, 14px) !important;
  }

  .site-header .site-nav a,
  .site-nav a {
    padding: 8px 0 !important;
    white-space: nowrap !important;
  }

  .site-header .menu-toggle,
  .menu-toggle {
    display: none !important;
  }

  .site-header .header-cta {
    display: inline-flex !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 860px) {
  .site-header .site-nav.open,
  .site-nav.open {
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    max-width: none !important;
    gap: 8px !important;
    padding: 14px !important;
  }

  .site-header .site-nav.open a,
  .site-nav.open a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .tour-card .stat-pill strong,
  .catalog-card .stat-pill strong,
  .tour-detail-card .stat-pill strong,
  .compare-card .compare-prices strong {
    font-size: clamp(18px, 6vw, 26px) !important;
  }

  .tour-card .card-stats .stat-pill:first-child strong,
  .catalog-card .card-stats .stat-pill:first-child strong {
    font-size: clamp(26px, 8vw, 34px) !important;
  }
}

/* v61: editable cards, transfer covers, preserved text layout and safer buttons. */
.tour-card,
.catalog-card,
.compare-card {
  background: var(--card-bg, #fff) !important;
  color: var(--card-text, var(--ink)) !important;
  border-color: color-mix(in srgb, var(--card-accent, #58b9ae) 34%, rgba(220, 236, 234, 1)) !important;
}

.tour-card::after,
.catalog-card::after,
.compare-card::after {
  background: linear-gradient(90deg, var(--card-accent, var(--coral)), var(--sun), var(--aqua)) !important;
}

.tour-card h2,
.tour-card h3,
.catalog-card h2,
.compare-card h2,
.tour-card p,
.catalog-card p,
.compare-card p {
  color: inherit;
}

.tour-card > img,
.catalog-card > img {
  height: var(--card-image-height, 230px) !important;
  object-fit: cover !important;
}

.catalog-card > img {
  min-height: var(--card-image-height, 320px) !important;
}

.compare-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.compare-media {
  height: var(--card-image-height, 230px);
  margin: -26px -26px 20px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: #e8f4f2;
}

.compare-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-content,
.catalog-body,
.tour-card > div {
  min-height: 0;
}

.mini-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 9px;
  margin: 14px 0 0;
}

.mini-card {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(88, 185, 174, 0.22);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(244, 251, 250, .96), rgba(255, 250, 240, .9));
}

.mini-card strong {
  color: var(--reef-dark);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-card em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
}

.catalog-body .card-stats,
.tour-card > div .card-stats,
.compare-card .compare-prices {
  margin-top: auto !important;
}

.catalog-body .card-actions,
.tour-card > div .card-actions,
.compare-actions {
  margin-top: 12px !important;
}

.tour-card .stat-pill strong,
.catalog-card .stat-pill strong,
.tour-detail-card .stat-pill strong,
.compare-card .compare-prices strong {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

.tour-card .card-stats .stat-pill:first-child strong,
.catalog-card .card-stats .stat-pill:first-child strong {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
}

.compare-card .compare-prices {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr)) !important;
  gap: 12px !important;
}

.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices div {
  min-height: 74px !important;
  padding: 13px 14px !important;
}

.compare-actions .primary-button,
.compare-actions .button-link,
.card-actions .primary-button,
.card-actions .button-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.detail-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.detail-hero-tags .tag-row {
  margin: 0;
}

.detail-hero-tags .tag {
  background: rgba(255, 122, 0, .14);
  color: var(--coral);
  box-shadow: 0 10px 24px rgba(255, 122, 0, .12);
}

@media (min-width: 981px) {
  .tour-card > img {
    height: var(--card-image-height, 230px) !important;
  }

  .catalog-card > img {
    height: 100% !important;
    min-height: var(--card-image-height, 320px) !important;
  }
}

@media (max-width: 980px) {
  .catalog-card > img,
  .tour-card > img,
  .compare-media {
    height: var(--card-image-height, 235px) !important;
    min-height: 0 !important;
  }

  .compare-media {
    margin: -24px -24px 18px;
  }
}

@media (max-width: 560px) {
  .compare-card .compare-prices,
  .tour-detail-card .detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .compare-card .compare-prices .stat-pill:first-child,
  .compare-card .compare-prices div:first-child,
  .tour-detail-card .detail-stats .stat-pill:first-child {
    grid-column: 1 / -1;
  }

  .compare-card .compare-prices strong {
    font-size: clamp(19px, 7vw, 28px) !important;
  }

  .card-actions,
  .compare-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Final polish: header logo, card action buttons and compact footer. */
.site-header .header-inner {
  grid-template-columns: 220px minmax(0, 1fr) 190px;
}

.site-header .brand,
.site-header .brand-logo {
  width: 198px !important;
  height: 86px !important;
}

.site-header .brand-logo img {
  max-width: 198px !important;
  max-height: 84px !important;
}

.catalog-body .card-actions,
.tour-card > div .card-actions,
.card-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: auto !important;
  padding-top: 18px !important;
}

.card-actions .primary-button,
.card-actions .button-link,
.compare-actions .primary-button,
.compare-actions .button-link {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 54px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  line-height: 1.12 !important;
}

.card-actions .secondary-detail-link,
.compare-actions .secondary-detail-link {
  border: 1px solid rgba(15, 127, 122, 0.32) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  color: var(--reef-dark) !important;
  box-shadow: 0 12px 22px rgba(16, 24, 32, 0.07) !important;
}

.card-actions .secondary-detail-link:hover,
.compare-actions .secondary-detail-link:hover {
  border-color: var(--reef-dark) !important;
  background: var(--reef-dark) !important;
  color: #fff !important;
}

.compare-actions {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

.site-footer {
  min-height: 0 !important;
}

.footer-inner {
  grid-template-columns: minmax(320px, 1.4fr) minmax(160px, 0.7fr) minmax(160px, 0.7fr) !important;
  gap: 24px !important;
  padding: 34px 0 20px !important;
}

.footer-brand-block {
  grid-template-columns: 118px minmax(0, 1fr) !important;
}

.site-footer .footer-logo {
  width: 118px !important;
  max-width: 118px !important;
  min-height: 78px !important;
}

.site-footer .footer-logo img {
  max-width: 100px !important;
  max-height: 66px !important;
}

.footer-trust-block {
  grid-column: 1 / -1 !important;
  padding-top: 0 !important;
}

.footer-trust-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
}

.footer-bottom {
  padding: 12px 0 18px !important;
}

@media (min-width: 981px) {
  .card-grid .card-actions {
    grid-template-columns: 1fr !important;
  }

  .compare-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .site-header .header-inner {
    grid-template-columns: 1fr auto !important;
  }

  .site-header .brand,
  .site-header .brand-logo {
    width: 178px !important;
    height: 88px !important;
  }

  .site-header .brand-logo img {
    max-width: 178px !important;
    max-height: 84px !important;
  }

  .compare-actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 680px) {
  .card-actions,
  .compare-actions {
    gap: 12px !important;
    padding-top: 16px !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 32px 0 18px !important;
  }

  .footer-brand-block {
    grid-template-columns: 1fr !important;
  }

  .site-footer .footer-logo {
    width: min(190px, 58vw) !important;
    max-width: 58vw !important;
  }

  .site-footer .footer-logo img {
    max-width: 168px !important;
    max-height: 82px !important;
  }
}

/* v65: final overrides after every legacy block. */
.site-header .header-cta,
.header-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 126px !important;
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 22px !important;
  line-height: 1 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.catalog-body .card-stats,
.tour-card > div .card-stats {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-top: 18px !important;
}

.catalog-body .card-stats .stat-pill,
.tour-card > div .card-stats .stat-pill,
.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices > div {
  min-height: 60px !important;
  padding: 9px 12px !important;
  align-content: center !important;
}

.catalog-body .card-stats .stat-pill:first-child,
.tour-card > div .card-stats .stat-pill:first-child {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(74px, auto) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
}

.catalog-body .card-stats .stat-pill:first-child strong,
.tour-card > div .card-stats .stat-pill:first-child strong {
  justify-self: end !important;
  text-align: right !important;
  color: var(--coral) !important;
  font-size: clamp(24px, 2.7vw, 34px) !important;
}

.catalog-body .card-stats .stat-pill:not(:first-child) strong,
.tour-card > div .card-stats .stat-pill:not(:first-child) strong,
.compare-card .compare-prices strong {
  font-size: clamp(16px, 1.55vw, 22px) !important;
  line-height: 1.04 !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

.compare-card .compare-prices {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: auto !important;
}

@media (max-width: 1180px) {
  .compare-card .compare-prices {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .catalog-body .card-stats .stat-pill:not(:first-child) strong,
  .tour-card > div .card-stats .stat-pill:not(:first-child) strong,
  .compare-card .compare-prices strong {
    font-size: clamp(16px, 5vw, 21px) !important;
  }
}

/* v66: stable card rhythm and compact square-ish stat blocks. */
.card-grid,
.catalog-grid {
  align-items: stretch !important;
}

.tour-card,
.catalog-card {
  height: 100% !important;
}

.tour-card > div,
.catalog-body {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
}

.card-grid .tour-card p {
  min-height: 92px !important;
  max-height: 118px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 5 !important;
}

.catalog-card p {
  min-height: 86px !important;
  max-height: 132px !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 6 !important;
}

.catalog-card .check-list {
  min-height: 56px !important;
  max-height: 88px !important;
  overflow: hidden !important;
  margin-bottom: 0 !important;
}

.catalog-body .card-stats,
.tour-card > div .card-stats {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-top: 18px !important;
}

.catalog-body .card-stats .stat-pill,
.tour-card > div .card-stats .stat-pill {
  grid-column: auto !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  min-width: 0 !important;
  min-height: 72px !important;
  aspect-ratio: 1.18 / 1 !important;
  padding: 9px 10px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
}

.catalog-body .card-stats .stat-pill:first-child,
.tour-card > div .card-stats .stat-pill:first-child {
  grid-column: auto !important;
  grid-template-columns: 1fr !important;
  gap: 3px !important;
}

.catalog-body .card-stats .stat-pill span,
.tour-card > div .card-stats .stat-pill span,
.tour-detail-card .detail-stats .stat-pill span {
  font-size: 9px !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.catalog-body .card-stats .stat-pill strong,
.tour-card > div .card-stats .stat-pill strong {
  width: 100% !important;
  justify-self: start !important;
  text-align: left !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
  line-height: 1.02 !important;
  color: var(--reef-dark) !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

.catalog-body .card-stats .stat-pill:first-child strong,
.tour-card > div .card-stats .stat-pill:first-child strong {
  color: var(--coral) !important;
  font-size: clamp(17px, 1.55vw, 21px) !important;
  white-space: nowrap !important;
}

.catalog-body .card-actions,
.tour-card > div .card-actions,
.card-actions {
  margin-top: 12px !important;
  padding-top: 0 !important;
}

.tour-detail-card .detail-stats {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(104px, 1fr)) !important;
  gap: 10px !important;
  align-items: stretch !important;
}

.tour-detail-card .detail-stats .stat-pill,
.transfer-detail-card .detail-stats .stat-pill {
  grid-column: auto !important;
  min-height: 88px !important;
  padding: 12px 14px !important;
  border-radius: 16px !important;
  aspect-ratio: 1.18 / 1 !important;
}

.tour-detail-card .detail-stats .stat-pill strong,
.transfer-detail-card .detail-stats .stat-pill strong {
  font-size: clamp(19px, 3vw, 28px) !important;
  line-height: 1.02 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
}

.tour-detail-card .primary-button,
.transfer-detail-card .primary-button {
  min-height: 54px !important;
  margin-top: 18px !important;
}

.compare-card .compare-prices {
  align-items: stretch !important;
}

.compare-card .compare-prices .stat-pill,
.compare-card .compare-prices > div {
  min-height: 82px !important;
  border-radius: 16px !important;
}

@media (max-width: 980px) {
  .card-grid .tour-card p {
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
  }

  .catalog-card p {
    min-height: 0 !important;
    max-height: none !important;
    display: block !important;
  }

  .catalog-card .check-list {
    min-height: 0 !important;
    max-height: none !important;
  }
}

@media (max-width: 620px) {
  .catalog-body .card-stats,
  .tour-card > div .card-stats,
  .tour-detail-card .detail-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .catalog-body .card-stats .stat-pill,
  .tour-card > div .card-stats .stat-pill,
  .tour-detail-card .detail-stats .stat-pill {
    min-height: 68px !important;
    padding: 9px 10px !important;
  }

  .catalog-body .card-stats .stat-pill strong,
  .tour-card > div .card-stats .stat-pill strong,
  .tour-detail-card .detail-stats .stat-pill strong {
    font-size: clamp(15px, 4.5vw, 20px) !important;
  }

  .catalog-body .card-stats .stat-pill:first-child strong,
  .tour-card > div .card-stats .stat-pill:first-child strong {
    font-size: clamp(17px, 5vw, 22px) !important;
  }
}

/* v67: undo oversized stat tiles and keep pricing compact/aligned. */
.catalog-body .card-stats,
.tour-card > div .card-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: auto !important;
  padding-top: 18px !important;
}

.catalog-body .card-stats .stat-pill,
.tour-card > div .card-stats .stat-pill {
  aspect-ratio: auto !important;
  min-height: 58px !important;
  max-height: none !important;
  padding: 9px 13px !important;
  border-radius: 15px !important;
}

.catalog-body .card-stats .stat-pill:first-child,
.tour-card > div .card-stats .stat-pill:first-child {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(78px, auto) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 62px !important;
}

.catalog-body .card-stats .stat-pill:first-child strong,
.tour-card > div .card-stats .stat-pill:first-child strong {
  justify-self: end !important;
  text-align: right !important;
  font-size: clamp(24px, 2.35vw, 34px) !important;
  white-space: nowrap !important;
}

.catalog-body .card-stats .stat-pill:not(:first-child) strong,
.tour-card > div .card-stats .stat-pill:not(:first-child) strong {
  font-size: clamp(18px, 1.65vw, 23px) !important;
  line-height: 1.04 !important;
}

.tour-detail-card .detail-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.tour-detail-card .detail-stats .stat-pill,
.transfer-detail-card .detail-stats .stat-pill {
  aspect-ratio: auto !important;
  grid-column: auto !important;
  min-height: 78px !important;
  padding: 11px 13px !important;
}

.tour-detail-card .detail-stats .stat-pill strong,
.transfer-detail-card .detail-stats .stat-pill strong {
  font-size: clamp(20px, 2.2vw, 28px) !important;
  line-height: 1.04 !important;
}

@media (max-width: 620px) {
  .catalog-body .card-stats,
  .tour-card > div .card-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .catalog-body .card-stats .stat-pill:first-child,
  .tour-card > div .card-stats .stat-pill:first-child {
    grid-column: 1 / -1 !important;
    min-height: 60px !important;
  }

  .catalog-body .card-stats .stat-pill:not(:first-child) strong,
  .tour-card > div .card-stats .stat-pill:not(:first-child) strong {
    font-size: clamp(17px, 5vw, 22px) !important;
  }

  .tour-detail-card .detail-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .tour-detail-card .detail-stats .stat-pill,
  .transfer-detail-card .detail-stats .stat-pill,
  .tour-detail-card .detail-stats .stat-pill:first-child {
    grid-column: auto !important;
    min-height: 74px !important;
    padding: 9px 10px !important;
  }

  .tour-detail-card .detail-stats .stat-pill strong,
  .transfer-detail-card .detail-stats .stat-pill strong {
    font-size: clamp(17px, 5vw, 21px) !important;
  }
}

/* v68: mobile header, filters and CTA polish requested after page-by-page audit. */
@media (max-width: 640px) {
  .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    padding-inline: 22px !important;
  }

  .site-header .header-cta,
  .header-cta {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 600px !important;
    padding-top: 54px !important;
    padding-bottom: 38px !important;
  }

  .hero h1 {
    font-size: 34px !important;
    line-height: 1.06 !important;
  }

  .hero-copy {
    font-size: 18px !important;
  }
}

.filters button {
  min-height: 46px !important;
  padding-inline: 18px !important;
}

.filter-count {
  min-width: auto !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.filters button.active .filter-count {
  background: transparent !important;
}

.inline-links a,
.dica-service-links a,
.footer-whatsapp {
  min-height: 44px !important;
}

/* v72: WooCommerce native integration. */
.shop-button {
  background: #007f79 !important;
  border-color: #007f79 !important;
  color: #fff !important;
}

.shop-button:hover,
.shop-button:focus-visible {
  background: #062135 !important;
  border-color: #062135 !important;
  color: #fff !important;
}

.woocommerce,
.woocommerce-page {
  color: #062135;
}

.woocommerce main,
.woocommerce-page main,
.woocommerce .site-main,
.woocommerce-page .site-main,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  max-width: 1180px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 70px) 18px;
}

.woocommerce div.product,
.woocommerce-page div.product {
  max-width: 1180px;
  margin: clamp(28px, 5vw, 70px) auto;
  padding: 0 18px;
}

.woocommerce div.product .product_title {
  color: #062135;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.wc-block-components-product-price {
  color: #007f79;
  font-weight: 900;
}

.woocommerce div.product .summary {
  background: #fff;
  border: 1px solid #d7ece8;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 33, 53, .08);
  padding: clamp(22px, 4vw, 38px);
}

.woocommerce div.product div.images img,
.woocommerce ul.products li.product a img,
.wc-block-components-product-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.woocommerce div.product .product_meta {
  display: none !important;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.woocommerce .quantity .qty,
.woocommerce div.product form.cart .quantity input,
.wc-block-components-quantity-selector {
  min-height: 48px;
  border: 1px solid #d7ece8;
  border-radius: 999px;
  background: #f3fbfa;
  color: #062135;
  font-weight: 800;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button,
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px !important;
  border: 1px solid #ff6b00 !important;
  border-radius: 999px !important;
  background: #ff6b00 !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(255, 107, 0, .22);
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-align: center;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .single_add_to_cart_button:hover,
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #007f79 !important;
  border-color: #007f79 !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 127, 121, .2);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  float: none !important;
  flex-direction: column;
  width: auto !important;
  min-height: 100%;
  margin: 0 !important;
  padding: 14px 14px 16px !important;
  border: 1px solid #d7ece8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 33, 53, .08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 2.6em;
  margin-top: 14px;
  color: #062135;
  font-size: 18px;
  line-height: 1.3;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  margin-top: auto !important;
}

.woocommerce .related.products,
.woocommerce .upsells.products {
  max-width: 1180px;
  margin: clamp(40px, 6vw, 70px) auto;
  padding: 0 18px;
}

.woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce .related.products,
.woocommerce .cart_totals,
.woocommerce-checkout-review-order,
.wc-block-cart,
.wc-block-components-sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
  border: 1px solid #d7ece8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(6, 33, 53, .08);
}

.woocommerce div.product .woocommerce-tabs {
  padding: clamp(18px, 3vw, 30px);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #d7ece8;
  border-radius: 999px;
  background: #f3fbfa;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #007f79;
  border-color: #007f79;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #fff;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.cart-empty.woocommerce-info {
  border-top-color: #007f79;
  border-radius: 8px;
  background: #f3fbfa;
  color: #062135;
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: #007f79;
}

.woocommerce-cart table.cart,
.woocommerce-checkout table.shop_table,
.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid #d7ece8;
  border-radius: 8px;
  background: #fff;
}

.wc-block-cart,
.wp-block-woocommerce-cart,
.wp-block-woocommerce-checkout {
  max-width: 1180px;
  margin: clamp(28px, 5vw, 70px) auto;
}

.wc-block-components-sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
  padding: clamp(16px, 3vw, 28px);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  min-height: 48px;
  border: 1px solid #d7ece8 !important;
  border-radius: 8px !important;
  background: #f3fbfa !important;
  color: #062135 !important;
}

.wc-block-cart__empty-cart__title,
.woocommerce .cart-empty {
  color: #062135;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}

@media (max-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .woocommerce div.product .summary {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .woocommerce main,
  .woocommerce-page main,
  .woocommerce div.product,
  .woocommerce-page div.product,
  .woocommerce-cart .entry-content,
  .woocommerce-checkout .entry-content,
  .woocommerce-account .entry-content {
    padding-inline: 16px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .woocommerce div.product form.cart,
  .woocommerce div.product form.cart .button,
  .woocommerce div.product form.cart .quantity {
    width: 100%;
  }

  .woocommerce .quantity .qty {
    width: 100%;
  }

  .wc-block-components-sidebar,
  .wc-block-checkout__main,
  .wc-block-checkout__sidebar {
    padding: 16px;
  }
}
