/*
Theme Name: Home Oasis Base
Theme URI: https://example.com/
Author: Local Team
Author URI: https://example.com/
Description: Base theme scaffold generated from Elementor container map (home-oasis.json).
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: home-oasis-base
*/

:root {
  --teal: #00584f;
  --teal-deep: #00463f;
  --teal-soft: #0b6a5f;
  --sand: #d2b177;
  --sand-deep: #c7a469;
  --sand-soft: #ead2a2;
  --text: #f5f1e8;
  --text-soft: rgba(245, 241, 232, 0.82);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  --radius-xl: 18px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --container: min(1120px, calc(100% - 44px));
  --header-h: 78px;
  --header-bg-exact: #00534c;
  --header-accent-exact: #daba80;
  --header-cta-hover-exact: #61ce70;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--teal);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-wrap {
  min-height: 100vh;
}

.site-header {
  position: relative;
  z-index: 999;
  background: var(--header-bg-exact);
}

.site-header .container {
  width: min(1140px, calc(100% - 120px));
}

.header-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand.has-custom-logo {
  gap: 0;
}

.brand-logo {
  width: auto;
  height: auto;
  object-fit: contain;
}

.site-header .brand {
  flex: 0 0 auto;
}

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

.site-footer .brand-logo {
  max-height: 64px;
  max-width: 260px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sand-soft), var(--sand));
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #f4efe4;
}

.brand-text small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  color: #d7c7a8;
  margin-top: 2px;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-nav__panel {
  display: flex;
  align-items: center;
}

.site-nav__menu {
  display: flex;
  align-items: center;
}

.site-nav__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__menu a {
  display: flex;
  align-items: center;
  font-family: "Montserrat", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #fff;
  padding: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-nav__menu a:hover,
.site-nav__menu a:focus-visible {
  color: var(--header-accent-exact);
  transform: scale(1.2);
}

.site-nav__backdrop,
.site-nav__head,
.site-nav__cta,
.site-nav__contact,
.site-nav__social {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-toggle__icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.menu-toggle__icon--close {
  display: none;
}

.site-header.menu-open .menu-toggle__icon--open {
  display: none;
}

.site-header.menu-open .menu-toggle__icon--close {
  display: block;
}

.header-cta {
  font-family: "Montserrat", Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  padding: 16px 28px;
  border-radius: 8px;
  background: var(--header-accent-exact);
  color: #fff;
  white-space: nowrap;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--header-cta-hover-exact);
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 1366px) {
  .site-nav__menu ul {
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .site-nav__panel,
  .site-nav__menu a,
  .site-nav__cta-btn,
  .site-nav__social-link {
    transition: none !important;
  }
}

.btn {
  border: 0;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-sand {
  background: var(--sand);
  color: var(--teal);
  padding: 12px 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.84rem;
  opacity: 1;
}

.btn.header-cta:hover,
.btn.header-cta:focus-visible {
  transform: scale(1.1);
  filter: none;
}

.hero {
  position: relative;
  min-height: auto;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 245px 60px 270px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: var(--hero-poster-url);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero.hero--poster-mode .hero-video {
  display: none;
}

.hero-inner {
  width: min(1140px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 44.626%) minmax(0, 1fr);
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 53px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
}

.hero-copy h1 span {
  display: inline;
}

.lead-form {
  width: min(1000px, 100%);
  max-width: 1000px;
  border-radius: 10px;
  background: rgba(0, 83, 76, 0.77);
  padding: 42px;
  margin: 0;
}

.lead-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px -24px;
}

.field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 8px;
  margin-bottom: 24px;
  width: 50%;
}

.field.elementor-col-100 {
  width: 100%;
}

.field.elementor-col-30 {
  width: 30%;
}

.field label {
  padding-bottom: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: #fff;
}

.field .elementor-field-label {
  width: 100%;
}

.elementor-mark-required .elementor-field-label::after {
  color: #fff;
  content: "*";
  padding-inline-start: 0.2em;
}

.field input {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  min-height: 47px;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 6px;
  padding: 6px 16px;
  background: #fff;
  color: #333;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

.field input::placeholder {
  color: #333;
  opacity: 0.6;
}

.field input:focus {
  border-color: #333;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  align-items: flex-end;
  justify-content: flex-start;
}

.form-actions .btn-submit {
  flex-basis: auto;
}

.btn-submit {
  min-height: 47px;
  border-radius: 8px;
  background: var(--header-accent-exact);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  padding: 17px 50px;
}

.btn.btn-submit:hover,
.btn.btn-submit:focus-visible {
  background: var(--header-cta-hover-exact);
  color: #fff;
  transform: scale(1.1);
  filter: none;
}

.elementor-button-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

@media (max-width: 1366px) {
  .hero {
    padding: 85px 55px 70px;
  }

  .hero-copy h1 {
    font-size: 43px;
  }
}

.section-intro {
  text-align: center;
  padding: 74px 0 18px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: #d7c7a8;
  opacity: 0.9;
}

.section-title {
  margin: 0;
  color: var(--sand);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 1rem;
  color: var(--text-soft);
}

.feature-stack {
  padding: 28px 0 64px;
  display: grid;
  gap: 44px;
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 36px;
  align-items: center;
  background: var(--sand);
  color: var(--teal);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
}

.feature-card.reverse .feature-copy {
  order: 1;
}

.feature-card.reverse .media-collage {
  order: 2;
}

.media-collage {
  border-radius: 12px;
  overflow: hidden;
  min-height: 290px;
  background: #e7d0a3;
  display: grid;
  gap: 10px;
}

.single-shot {
  grid-template-columns: 1fr;
}

.single-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.collage-3 {
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-rows: 1fr 1fr;
}

.collage-3 img:nth-child(1) {
  grid-row: 1 / span 2;
  height: 100%;
  object-fit: cover;
}

.collage-3 img:nth-child(2),
.collage-3 img:nth-child(3) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-wrap: balance;
}

.feature-copy p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  color: rgba(0, 88, 79, 0.82);
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  font-weight: 600;
  font-size: 0.95rem;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35em;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 88, 79, 0.1);
  flex: 0 0 auto;
}

.feature-plain {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 36px;
  align-items: center;
  padding: 6px 10px;
}

.feature-plain .feature-copy {
  padding: 0 8px;
}

.feature-plain .feature-copy h3 {
  color: var(--sand);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.feature-plain .feature-copy p,
.feature-plain .list {
  color: var(--text-soft);
}

.feature-plain .list li::before {
  background: var(--sand);
  box-shadow: 0 0 0 3px rgba(210, 177, 119, 0.14);
}

.blog-wrap {
  margin-top: 32px;
  background: var(--sand);
  color: var(--teal);
  padding: 70px 0 66px;
}

.blog-head {
  text-align: center;
  margin-bottom: 34px;
}

.blog-head .eyebrow {
  color: rgba(0, 88, 79, 0.55);
}

.blog-head .section-title {
  color: var(--teal);
}

.blog-head .section-subtitle {
  color: rgba(0, 88, 79, 0.72);
  max-width: 760px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: transparent;
  border-radius: 12px;
}

.blog-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
  color: inherit;
  text-decoration: none;
}

.blog-card__link:focus-visible {
  outline: 2px solid rgba(0, 88, 79, 0.45);
  outline-offset: 4px;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.76 / 1;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.meta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(0, 88, 79, 0.66);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

.blog-card h4 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.blog-card p {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(0, 88, 79, 0.74);
}

.blog-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.map-section {
  padding: 78px 0 0;
}

.map-shell {
  margin-top: 28px;
  height: 360px;
  border: 1px solid rgba(210, 177, 119, 0.5);
  border-left: 0;
  border-right: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 62%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(211, 228, 214, 0.95), rgba(198, 221, 199, 0.95));
  background-size: auto, auto, auto, 36px 36px, 36px 36px, auto;
  overflow: hidden;
  position: relative;
}

.river {
  position: absolute;
  inset: 22% -8% auto auto;
  width: 80%;
  height: 34%;
  background: linear-gradient(90deg, rgba(96, 164, 203, 0.55), rgba(78, 147, 192, 0.74));
  border-radius: 999px;
  transform: rotate(-8deg);
  filter: blur(1px);
  opacity: 0.75;
}

.road {
  position: absolute;
  inset: 20% auto auto -6%;
  width: 68%;
  height: 18px;
  background: rgba(232, 241, 232, 0.95);
  transform: rotate(13deg);
  border-radius: 999px;
  box-shadow:
    0 72px 0 rgba(232, 241, 232, 0.85),
    0 146px 0 rgba(232, 241, 232, 0.75);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: #cf5848;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #fff;
  border-radius: 50%;
}

.pin.p1 {
  left: 34%;
  top: 40%;
}

.pin.p2 {
  left: 50%;
  top: 33%;
}

.pin.p3 {
  left: 62%;
  top: 48%;
}

.pin.p4 {
  left: 57%;
  top: 58%;
}

.map-badge {
  position: relative;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  color: #30544d;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.site-footer {
  margin-top: 0;
  padding: 50px 0 20px;
  background: var(--header-bg-exact);
}

.site-footer .container {
  width: min(1140px, calc(100% - 120px));
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

.footer-brand-block {
  flex: 0 0 33.654%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer .brand-logo {
  width: 220px;
  max-width: 220px;
  max-height: none;
  height: auto;
}

.footer-copy {
  margin: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6em;
  letter-spacing: -0.01em;
  color: #fff;
}

.footer-copy strong {
  font-weight: 700;
}

.footer-contact-block {
  flex: 0 0 37.866%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-legal {
  margin: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-contact-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
}

.footer-contact-list li {
  text-align: center;
}

.footer-contact-list a {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: var(--header-accent-exact);
}

.footer-menu-block {
  flex: 0 0 22%;
  align-self: center;
  margin-left: auto;
  margin-right: -4px;
  text-align: right;
}

.footer-menu-block .footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  justify-items: end;
}

.footer-menu-block .footer-menu a {
  display: inline-block;
  padding: 4px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: -0.01em;
  color: #fff;
  transform-origin: left center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-menu-block .footer-menu a:hover,
.footer-menu-block .footer-menu a:focus-visible {
  color: var(--header-accent-exact);
  transform: scale(1.2);
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: var(--header-accent-exact);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--header-accent-exact);
  color: var(--header-bg-exact);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.footer-social-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-social-icon:hover,
.footer-social-icon:focus-visible {
  background: #03302c;
  color: #fff;
  transform: scale(1.1);
}

.footer-bar {
  background: var(--header-bg-exact);
}

.footer-bar .container {
  width: min(1140px, calc(100% - 120px));
}

.footer-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-credit {
  margin: 0;
  padding: 12px 0 21px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}

.footer-credit a {
  color: var(--header-accent-exact);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
}

@media (max-width: 1366px) {
  .footer-credit {
    padding: 12px;
    font-size: 11px;
  }
}

@media (max-width: 990px) {
  .site-header {
    position: sticky;
    top: 0;
    margin-top: 0;
  }

  body.admin-bar .site-header {
    top: 0;
  }

  .site-header .container {
    width: min(85%, calc(100% - 24px));
  }

  .header-inner {
    min-height: 100px;
    gap: 10px;
    padding: 20px 0;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    background: var(--header-accent-exact);
    color: #fff;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    color: #121517;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: block;
    margin-left: 0;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(3, 16, 13, 0.58);
    backdrop-filter: blur(3px);
    cursor: pointer;
  }

  .site-nav__panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(88vw, 360px);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 18px calc(18px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(165deg, #063a34 0%, #07453f 58%, #0a5a52 100%);
    border-left: 1px solid rgba(234, 210, 162, 0.24);
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overflow-y: auto;
  }

  .site-header.menu-open .site-nav__panel {
    transform: translateX(0);
  }

  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(234, 210, 162, 0.2);
  }

  .site-nav__title {
    margin: 0;
    color: var(--sand-soft);
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(234, 210, 162, 0.26);
    border-radius: 8px;
    background: rgba(3, 28, 23, 0.42);
    color: #f5f1e8;
    cursor: pointer;
    padding: 0;
  }

  .site-nav__close span {
    font-size: 1.8rem;
    line-height: 1;
  }

  .site-nav__menu {
    display: block;
  }

  .site-nav__menu ul {
    display: grid;
    gap: 2px;
  }

  .site-nav__menu a {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 10px;
    border-radius: 10px;
    color: #f5f1e8;
    font-family: "Montserrat", Inter, "Segoe UI", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transform: none;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
  }

  .site-nav__menu a:hover,
  .site-nav__menu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: var(--sand-soft);
    padding-left: 14px;
    transform: none;
  }

  .site-nav__cta {
    display: block;
    margin-top: 16px;
  }

  .site-nav__cta-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 10px;
    background: var(--sand);
    color: var(--teal-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .site-nav__cta-btn:hover,
  .site-nav__cta-btn:focus-visible {
    color: var(--teal-deep);
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  .site-nav__contact {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(234, 210, 162, 0.18);
  }

  .site-nav__contact-link {
    color: rgba(245, 241, 232, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    padding: 2px 0;
  }

  .site-nav__contact-link:hover,
  .site-nav__contact-link:focus-visible {
    color: var(--sand-soft);
  }

  .site-nav__social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(234, 210, 162, 0.18);
  }

  .site-nav__social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(234, 210, 162, 0.34);
    background: rgba(1, 24, 20, 0.3);
    color: #f5f1e8;
    display: grid;
    place-items: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }

  .site-nav__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .site-nav__social-link:hover,
  .site-nav__social-link:focus-visible {
    background: rgba(234, 210, 162, 0.16);
    color: var(--sand-soft);
    border-color: rgba(234, 210, 162, 0.58);
  }

  .menu-toggle:focus-visible,
  .site-nav__close:focus-visible,
  .site-nav__menu a:focus-visible,
  .site-nav__cta-btn:focus-visible,
  .site-nav__contact-link:focus-visible,
  .site-nav__social-link:focus-visible {
    outline: 2px solid var(--sand-soft);
    outline-offset: 2px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 80px 0;
  }

  .hero-inner,
  .feature-card,
  .feature-plain {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 60px;
    width: min(85%, 1140px);
    grid-template-columns: 1fr;
    padding: 0;
  }

  .hero-copy {
    text-align: center;
    padding: 0 23px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .lead-form {
    max-width: 640px;
    padding: 40px;
  }

  .feature-card.reverse .feature-copy,
  .feature-card.reverse .media-collage {
    order: initial;
  }

  .site-footer {
    padding: 80px 0;
  }

  .site-footer .container {
    width: min(85%, 1140px);
  }

  .footer-bar .container {
    width: min(85%, 1140px);
  }

  .footer-main {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 32px;
  }

  .footer-brand-block {
    flex: 1 0 auto;
    width: 100%;
    align-items: center;
  }

  .footer-contact-block {
    flex: 1 0 auto;
    align-items: center;
  }

  .site-footer .brand-logo {
    width: 210px;
    max-width: 210px;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-menu-block {
    display: none;
  }

  .footer-divider {
    margin: 0;
  }

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

  .map-shell {
    height: 300px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --container: min(1120px, calc(100% - 24px));
  }

  .site-header .container {
    width: min(90%, calc(100% - 24px));
  }

  .site-footer {
    padding: 30px 0 19px;
  }

  .site-footer .container {
    width: min(90%, calc(100% - 24px));
  }

  .footer-bar .container {
    width: min(90%, calc(100% - 24px));
  }

  .header-inner {
    min-height: 80px;
    padding: 10px 0;
  }

  .brand-text strong {
    font-size: 1.22rem;
  }

  .brand-text small {
    font-size: 0.73rem;
  }

  .site-header .brand-logo {
    width: 125px;
    max-width: 125px;
  }

  .site-nav__panel {
    width: min(92vw, 360px);
    padding-inline: 16px;
  }

  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    width: min(90%, 1140px);
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .site-footer .brand-logo {
    width: 160px;
    max-width: 160px;
    max-height: none;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-copy {
    font-size: 15px;
  }

  .footer-legal {
    font-size: 12px;
    line-height: 1.4em;
  }

  .footer-contact-list a {
    font-size: 15px;
  }

  .footer-contact-block {
    width: 100%;
    align-items: center;
  }

  .footer-divider {
    margin: 4px 0;
  }

  .footer-social-icon {
    width: 40px;
    height: 40px;
  }

  .footer-credit {
    font-size: 11px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .lead-form {
    max-width: 540px;
    padding: 32px 24px;
  }

  .field,
  .field.elementor-col-30,
  .field.elementor-col-50,
  .field.elementor-col-100 {
    width: 100%;
  }

  .field-full {
    grid-column: auto;
  }

  .section-intro {
    padding-top: 56px;
  }

  .feature-card {
    padding: 16px;
  }

  .media-collage {
    min-height: 230px;
  }

  .feature-copy h3 {
    font-size: 1.25rem;
  }

  .blog-wrap {
    padding: 56px 0;
  }

  .blog-card h4 {
    font-size: 1.15rem;
  }

}

@media (min-width: 768px) and (max-width: 990px) {
  .footer-brand-block {
    width: 100%;
    flex-basis: 100%;
  }

  .footer-contact-block {
    width: 29%;
    flex-basis: 29%;
  }
}

/* --------------------------------------------------------------------------
   Home Funnel v2
   -------------------------------------------------------------------------- */
.home-funnel {
  background: var(--teal);
}

.home-funnel .home-reveal {
  --reveal-delay: 0ms;
  --reveal-duration: 520ms;
  --reveal-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --reveal-x: 0px;
  --reveal-y: 12px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease) var(--reveal-delay),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay);
  will-change: opacity, transform;
}

.home-funnel .home-reveal--fade-up {
  --reveal-x: 0px;
  --reveal-y: 12px;
}

.home-funnel .home-reveal--fade-in {
  --reveal-x: 0px;
  --reveal-y: 0px;
}

.home-funnel .home-reveal--slide-left {
  --reveal-x: -18px;
  --reveal-y: 0px;
}

.home-funnel .home-reveal--slide-right {
  --reveal-x: 18px;
  --reveal-y: 0px;
}

.home-funnel .home-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .home-funnel .home-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}

.home-funnel .section {
  position: relative;
  padding: 82px 0;
}

.home-funnel .section-head {
  text-align: center;
  margin: 0 auto 38px;
  max-width: 840px;
}

.home-funnel .eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 210, 162, 0.88);
}

.home-funnel .section-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.home-funnel .section-subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.88);
  font-size: 1rem;
}

.home-funnel .section-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.home-funnel .section-actions-inline {
  justify-content: flex-start;
}

.home-funnel .btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.home-funnel .btn-primary {
  background: var(--sand);
  color: var(--teal-deep);
}

.home-funnel .btn-primary:hover,
.home-funnel .btn-primary:focus-visible {
  color: var(--teal-deep);
}

.home-funnel .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.home-funnel .btn-outline:hover,
.home-funnel .btn-outline:focus-visible {
  border-color: #fff;
  color: #fff;
}

.section-place .btn-outline,
.section-location .btn-outline,
.home-funnel .section-blog .btn-outline {
  border-color: rgba(22, 74, 66, 0.45);
  color: #164a42;
}

.section-place .btn-outline:hover,
.section-place .btn-outline:focus-visible,
.section-location .btn-outline:hover,
.section-location .btn-outline:focus-visible,
.home-funnel .section-blog .btn-outline:hover,
.home-funnel .section-blog .btn-outline:focus-visible {
  border-color: #164a42;
  color: #164a42;
}

.home-funnel .btn-urgency {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  background: #1d9e59;
  color: #fff;
  white-space: nowrap;
}

.home-funnel .btn-urgency:hover,
.home-funnel .btn-urgency:focus-visible {
  background: #1c8e51;
  color: #fff;
}

.home-funnel .hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(86vh, 780px);
  padding: 120px 0 110px;
  overflow: hidden;
}

.home-funnel .hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 20, 16, 0.68) 0%, rgba(6, 20, 16, 0.46) 46%, rgba(6, 20, 16, 0.2) 72%, rgba(6, 20, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.34) 100%);
}

.home-funnel .hero-inner {
  position: relative;
  z-index: 1;
}

.home-funnel .hero-copy {
  position: relative;
  isolation: isolate;
  max-width: 700px;
}


.home-funnel .hero-eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(234, 210, 162, 0.9);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.home-funnel .hero-title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.42);
}

.home-funnel .hero-subtitle {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 1.06rem;
  color: rgba(245, 241, 232, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.home-funnel .hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.home-funnel .hero-actions .btn-whatsapp-hero {
  min-height: 58px;
  padding: 0 34px;
  font-size: 1.02rem;
  background: #1fa855;
  color: #fff;
}

.home-funnel .hero-actions .btn-whatsapp-hero:hover,
.home-funnel .hero-actions .btn-whatsapp-hero:focus-visible {
  background: #1a954b;
  color: #fff;
  filter: none;
}

.home-funnel .hero-actions .btn-hero-secondary {
  min-height: auto;
  padding: 8px 4px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-funnel .hero-actions .btn-hero-secondary:hover,
.home-funnel .hero-actions .btn-hero-secondary:focus-visible {
  border-color: #fff;
  color: #fff;
  transform: none;
  filter: none;
}

.urgency-bar {
  position: relative;
  background: #e5c58f;
  color: #173b36;
  padding: 14px 0;
  overflow: hidden;
  isolation: isolate;
}

.urgency-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperNoiseA'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' opacity='0.32' filter='url(%23paperNoiseA)'/%3E%3C/svg%3E") 0 0 / 170px 170px repeat,
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperNoiseB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.42' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' opacity='0.2' filter='url(%23paperNoiseB)'/%3E%3C/svg%3E") 0 0 / 280px 280px repeat;
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.urgency-bar::after {
  content: "";
  position: absolute;
  inset: -34% -18%;
  background:
    radial-gradient(42% 66% at 22% 50%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 72%),
    linear-gradient(118deg, rgba(255, 255, 255, 0) 36%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 64%);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: translateX(-22%);
  animation: urgency-shine 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes urgency-shine {
  0%,
  100% {
    transform: translateX(-22%);
  }

  50% {
    transform: translateX(16%);
  }
}

.urgency-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.urgency-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.urgency-kicker {
  margin: 0 0 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 46, 39, 0.92);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.urgency-kicker::before {
  content: "!";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(15, 46, 39, 0.76);
  display: inline-grid;
  place-items: center;
  font-size: 0.56rem;
  line-height: 1;
  color: #0f2e27;
}

.urgency-text {
  margin: 0;
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0f2e27;
}

.urgency-subtext {
  margin: 4px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(15, 46, 39, 0.84);
}

.section-differentials {
  position: relative;
  background: linear-gradient(180deg, #0b6158 0%, #0a5f56 56%, #0c6158 100%);
  overflow: hidden;
  isolation: isolate;
}

.section-differentials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 90% -10%, rgba(210, 177, 119, 0.16), transparent 68%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.section-differentials .container {
  position: relative;
  z-index: 2;
}

.differentials-lux-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.differentials-lux-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(112px);
  z-index: 1;
  pointer-events: none;
}

.differentials-lux-ambient--one {
  width: 510px;
  height: 510px;
  top: -4%;
  left: -12%;
  background: rgba(234, 210, 162, 0.24);
  opacity: 0.2;
}

.differentials-lux-ambient--two {
  width: 440px;
  height: 440px;
  bottom: 8%;
  right: -8%;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0.11;
}

.differentials-lux-head {
  margin: 0 auto 34px;
  max-width: 860px;
  text-align: center;
}

.differentials-lux-kicker-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.differentials-lux-line {
  width: 48px;
  height: 1px;
  background: rgba(234, 210, 162, 0.86);
}

.differentials-lux-kicker {
  margin: 0;
  color: rgba(234, 210, 162, 0.9);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.differentials-lux-title {
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.differentials-lux-title span {
  color: var(--sand);
  font-style: italic;
}

.differentials-lux-subtitle {
  margin: 14px auto 0;
  max-width: 64ch;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.99rem;
  line-height: 1.55;
  text-wrap: balance;
}

.differentials-lux-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.differentials-lux-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.differentials-lux-card:hover,
.differentials-lux-card:focus-within {
  border-color: rgba(234, 210, 162, 0.38);
  transform: translateY(-1px);
}

.differentials-lux-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: var(--sand);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
}

.differentials-lux-card-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.differentials-lux-card-text {
  margin: 10px 0 0;
  color: rgba(245, 241, 232, 0.88);
  font-size: 0.95rem;
  line-height: 1.55;
}

.differentials-lux-actions {
  margin-top: 30px;
}

.section-place,
.section-location.location-immersive,
.home-funnel .section-blog {
  position: relative;
  background: #e5c58f;
  color: #123524;
  overflow: hidden;
  isolation: isolate;
}

.section-place::before,
.section-location.location-immersive::before,
.home-funnel .section-blog::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperNoiseA'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.18' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' opacity='0.32' filter='url(%23paperNoiseA)'/%3E%3C/svg%3E") 0 0 / 170px 170px repeat,
    url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperNoiseB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.42' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' opacity='0.2' filter='url(%23paperNoiseB)'/%3E%3C/svg%3E") 0 0 / 280px 280px repeat;
  mix-blend-mode: multiply;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.section-place::after,
.section-location.location-immersive::after,
.home-funnel .section-blog::after {
  content: "";
  position: absolute;
  inset: -34% -12% auto auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.section-place .container,
.section-location.location-immersive .locx-wrap,
.home-funnel .section-blog .container {
  position: relative;
  z-index: 1;
}

.section-place .container {
  width: min(1280px, calc(100% - 44px));
}

.section-place .section-title,
.section-place .eyebrow {
  color: #123524;
}

.section-place .section-subtitle {
  color: rgba(18, 53, 36, 0.8);
}

.place-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.place-layout > * {
  min-width: 0;
}

.place-media {
  display: grid;
  gap: 18px;
}

.place-slider {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(18, 53, 36, 0.16);
  box-shadow: 0 14px 30px rgba(16, 51, 45, 0.12);
  padding: 14px;
}

.place-slider-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(10, 35, 29, 0.72);
}

.place-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.place-slide {
  margin: 0;
  min-width: 100%;
  flex: 0 0 100%;
}

.place-slide img,
.place-slide video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.place-slide-video {
  position: relative;
}

.place-slide-video::before {
  content: "Video de apresentacao";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(11, 41, 33, 0.6);
  color: #f5f1e8;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.place-slide-video::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(8, 30, 24, 0) 0%, rgba(8, 30, 24, 0.46) 100%);
  pointer-events: none;
}

.place-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 32, 26, 0.78);
  color: #f5f1e8;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.place-slider-arrow span {
  font-size: 1.95rem;
  line-height: 1;
}

.place-slider-arrow-prev {
  left: 10px;
}

.place-slider-arrow-next {
  right: 10px;
}

.place-slider-arrow:hover,
.place-slider-arrow:focus-visible {
  background: rgba(12, 40, 32, 0.95);
}

.place-slider-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: thin;
}

.place-slider-thumb {
  flex: 0 0 102px;
  height: 62px;
  border: 2px solid transparent;
  border-radius: 9px;
  padding: 0;
  background: rgba(18, 53, 36, 0.22);
  overflow: hidden;
  cursor: pointer;
}

.place-slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-slider-thumb-video {
  flex-basis: 112px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(8, 34, 27, 0.84) 0%, rgba(13, 51, 41, 0.72) 100%);
}

.place-slider-thumb-video span {
  color: #f5f1e8;
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.place-slider-thumb.is-active {
  border-color: #123524;
  box-shadow: 0 0 0 1px rgba(18, 53, 36, 0.28);
}

.place-slider-thumb:focus-visible {
  outline: 3px solid rgba(18, 53, 36, 0.45);
  outline-offset: 2px;
}

.place-instagram {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.place-instagram--secondary {
  margin-top: 2px;
  border-radius: 18px;
  border: 1px solid rgba(18, 53, 36, 0.14);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(16, 51, 45, 0.08);
  padding: 16px;
}

.place-instagram h3 {
  margin: 0;
  font-size: 1.28rem;
  color: #123524;
}

.place-instagram p {
  margin: 10px 0 18px;
  color: rgba(18, 53, 36, 0.82);
  font-size: 0.98rem;
}

.section-place .btn-primary {
  background: #123524;
  color: #f5f1e8;
}

.section-place .btn-primary:hover,
.section-place .btn-primary:focus-visible {
  background: #0f2e27;
  color: #f5f1e8;
}

.instagram-feed-shell {
  background: transparent;
}

.instagram-feed-shell .sbi {
  width: 100%;
}

.instagram-feed-shell #sb_instagram,
.instagram-feed-shell .sbi,
.instagram-feed-shell .sb_instagram_header,
.instagram-feed-shell #sbi_images {
  background: transparent !important;
}

.instagram-feed-shell #sb_instagram {
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.instagram-fallback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.instagram-fallback-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
}

.instagram-fallback-note {
  margin: 12px 0;
  font-size: 0.86rem;
  color: rgba(22, 74, 66, 0.75);
}

.section-conditions,
.section-infrastructure {
  background: linear-gradient(180deg, #0b6158 0%, #0a5f56 56%, #0c6158 100%);
  overflow: hidden;
}

.section-conditions {
  isolation: isolate;
}

.section-infrastructure {
  isolation: isolate;
}

.section-conditions::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 90% -10%, rgba(210, 177, 119, 0.16), transparent 68%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.section-infrastructure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.section-conditions .container,
.section-infrastructure .container {
  position: relative;
  z-index: 1;
}

.section-conditions + .section-infrastructure {
  margin-top: 0;
}

.section-conditions .container {
  z-index: 2;
}

.section-infrastructure .container {
  z-index: 2;
}

.conditions-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.conditions-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(118px);
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

.conditions-ambient--one {
  width: 540px;
  height: 540px;
  background: rgba(210, 177, 119, 0.38);
  top: 4%;
  left: -13%;
}

.conditions-ambient--two {
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.18);
  right: -8%;
  bottom: -10%;
  opacity: 0.12;
}

.conditions-lux-head {
  margin: 0 0 clamp(52px, 9vw, 112px);
  text-align: center;
}

.conditions-lux-kicker-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.conditions-lux-line {
  width: 52px;
  height: 1px;
  background: rgba(234, 210, 162, 0.85);
}

.conditions-lux-kicker {
  margin: 0;
  color: rgba(234, 210, 162, 0.92);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.conditions-lux-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.conditions-lux-title span {
  color: var(--sand);
  font-style: italic;
  font-weight: 700;
}

.conditions-lux-layout {
  display: grid;
  gap: clamp(64px, 9.2vw, 118px);
}

.conditions-lux-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 32vw, 340px);
}

.conditions-lux-number {
  position: absolute;
  inset: 0 auto auto 50%;
  margin: 0;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(5.7rem, 21vw, 15rem);
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: var(--sand);
  opacity: 0.17;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.34);
  user-select: none;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.conditions-lux-number--long {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.06em;
  font-size: clamp(4.3rem, 15vw, 9.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.conditions-lux-number--long small {
  display: block;
  font-size: 0.29em;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}

.conditions-lux-number--wide {
  font-size: clamp(4.8rem, 18vw, 13.2rem);
  letter-spacing: -0.06em;
}

.conditions-lux-number--brand {
  width: min(34vw, 360px);
  max-width: 100%;
  opacity: 1;
  text-shadow: none;
}

.conditions-lux-brand-logo {
  display: block;
  width: 100%;
  border-radius: 8px;
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.conditions-lux-content {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  text-align: center;
  padding-top: 56px;
}

.conditions-lux-chip {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(2, 47, 42, 0.38);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.conditions-lux-block h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.conditions-lux-text {
  margin: 18px 0 0;
  color: rgba(245, 241, 232, 0.8);
  font-size: clamp(0.94rem, 1.15vw, 1.03rem);
  font-weight: 400;
  line-height: 1.6;
}

.conditions-lux-text strong {
  color: #fff;
  font-weight: 700;
}

.conditions-lux-link {
  margin: 22px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sand-soft);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.conditions-lux-link:hover,
.conditions-lux-link:focus-visible {
  color: #fff;
}

.conditions-lux-link:focus-visible {
  outline: 2px solid rgba(234, 210, 162, 0.6);
  outline-offset: 4px;
}

.conditions-lux-link-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.conditions-lux-link:hover .conditions-lux-link-icon,
.conditions-lux-link:focus-visible .conditions-lux-link-icon {
  transform: translateX(2px);
}

.conditions-lux-block:hover .conditions-lux-number,
.conditions-lux-block:focus-within .conditions-lux-number {
  transform: translateX(-50%) scale(1.04);
  opacity: 0.25;
}

.conditions-lux-cta {
  margin-top: clamp(56px, 8vw, 102px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: clamp(36px, 5vw, 58px);
  text-align: center;
}

.conditions-lux-cta-note {
  margin: 0 0 22px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 0.67rem;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-funnel .btn-conditions-lux {
  min-height: 56px;
  padding: 0 42px;
  border-radius: 5px;
  border: 1px solid rgba(234, 210, 162, 0.45);
  background: var(--sand);
  color: var(--teal-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.home-funnel .btn-conditions-lux:hover,
.home-funnel .btn-conditions-lux:focus-visible {
  color: var(--teal-deep);
  transform: translateY(-2px);
  filter: brightness(1.03);
}

@media (min-width: 960px) {
  .conditions-lux-head {
    text-align: left;
  }

  .conditions-lux-kicker-row {
    display: flex;
  }

  .conditions-lux-block {
    justify-content: flex-start;
    gap: clamp(36px, 6.4vw, 110px);
  }

  .conditions-lux-block--reverse {
    flex-direction: row-reverse;
  }

  .conditions-lux-number {
    position: relative;
    inset: auto;
    transform: none;
    opacity: 0.9;
  }

  .conditions-lux-content {
    padding-top: 0;
    text-align: left;
  }

  .conditions-lux-block--reverse .conditions-lux-content {
    text-align: right;
  }

  .conditions-lux-block:hover .conditions-lux-number,
  .conditions-lux-block:focus-within .conditions-lux-number {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .conditions-lux-layout {
    gap: 42px;
  }

  .conditions-lux-block {
    min-height: 228px;
    overflow: visible;
  }

  .conditions-lux-number {
    inset: -2px auto auto 50%;
    width: auto;
    text-align: center;
    font-size: clamp(4.4rem, 21vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    opacity: 0.16;
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }

  .conditions-lux-number--long {
    white-space: normal;
    font-size: clamp(3.6rem, 16vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.02em;
    gap: 0.12em;
  }

  .conditions-lux-number--wide {
    font-size: clamp(3.5rem, 17vw, 5.4rem);
    letter-spacing: -0.02em;
  }

  .conditions-lux-number--brand {
    width: min(34vw, 320px);
  }

  .conditions-lux-number--long small {
    font-size: 0.31em;
    letter-spacing: 0.1em;
  }

  .conditions-lux-content {
    padding-top: 58px;
  }

  .conditions-lux-block h3 {
    max-width: 17ch;
    margin-left: auto;
    margin-right: auto;
  }

  .home-funnel .btn-conditions-lux {
    width: min(100%, 320px);
  }
}

.section-infrastructure .infra-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: 22px;
  align-items: start;
}

.section-infrastructure .infra-intro {
    margin: 0;
    max-width: none;
    height: 100%;
    text-align: left;
    padding: 26px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-infrastructure .infra-intro .section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  line-height: 1.1;
}

.section-infrastructure .infra-intro .section-subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: 34ch;
  color: rgba(245, 241, 232, 0.88);
}

.infra-proof {
  margin-top: 20px;
  padding: 14px 14px 13px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.2);
}

.infra-proof-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(234, 210, 162, 0.92);
}

.infra-proof-value {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.infra-proof-note {
  margin: 5px 0 0;
  color: rgba(245, 241, 232, 0.85);
  font-size: 0.87rem;
  line-height: 1.35;
}

.infra-icons-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.infra-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
}

.infra-card {
  position: relative;
  grid-column: span 4;
  min-height: 92px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  gap: 11px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.infra-card--wide {
  grid-column: span 6;
}

.infra-card--full {
  grid-column: span 12;
}

.infra-card:hover,
.infra-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(234, 210, 162, 0.45);
}

.infra-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 210, 162, 0.34);
  background: linear-gradient(160deg, rgba(210, 177, 119, 0.26), rgba(210, 177, 119, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.infra-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #f3d8ac;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.infra-card-label {
  margin: 0;
  color: rgba(234, 210, 162, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.infra-card-title {
  margin: 3px 0 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  font-weight: 700;
}

.section-infrastructure .section-actions {
  margin-top: 30px;
}

.section-infrastructure .btn-primary {
  background: var(--sand);
  color: var(--teal-deep);
}

.section-infrastructure .btn-primary:hover,
.section-infrastructure .btn-primary:focus-visible {
  background: var(--sand-soft);
  color: var(--teal-deep);
}

@media (max-width: 1080px) {
  .section-infrastructure .infra-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-infrastructure .infra-intro {
    text-align: center;
    padding: 24px 20px;
  }

  .section-infrastructure .infra-intro .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 60ch;
  }

  .infra-proof {
    max-width: 480px;
    margin: 18px auto 0;
  }

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

  .infra-card,
  .infra-card--wide,
  .infra-card--full {
    grid-column: auto;
    min-height: 86px;
  }
}

.section-location {
  position: relative;
}

.section-location.location-immersive {
  color: #123524;
}

.section-location.location-immersive .locx-wrap {
  position: relative;
  z-index: 1;
}

.section-location.location-immersive .locx-head {
  margin-bottom: clamp(36px, 7vw, 88px);
}

.section-location.location-immersive .locx-head-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.section-location.location-immersive .locx-head-line {
  width: 46px;
  height: 1px;
  background: rgba(18, 53, 36, 0.34);
}

.section-location.location-immersive .locx-head-kicker p {
  margin: 0;
  color: rgba(18, 53, 36, 0.66);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-location.location-immersive .locx-mega {
  margin: 14px 0 0;
  font-family: var(--font-display);
  color: #102f27;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-location.location-immersive .locx-mega span {
  display: inline-block;
  color: #164a42;
}

.section-location.location-immersive .locx-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 4vw, 74px);
  align-items: start;
}

.section-location.location-immersive .locx-map-col {
  min-width: 0;
}

.section-location.location-immersive .locx-map-group {
  position: relative;
}

.section-location.location-immersive .locx-map-outline {
  position: absolute;
  inset: -12px -10px -8px -12px;
  border-radius: 46px;
  transform: rotate(-1deg);
  transition: transform 0.7s ease;
}

.section-location.location-immersive .locx-map-group:hover .locx-map-outline {
  transform: rotate(0deg);
}

.section-location.location-immersive .locx-map-organic {
  position: relative;
  padding: 12px;
  border-radius: 40% 60% 35% 65% / 50% 40% 60% 50%;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 20px rgba(18, 53, 36, 0.12);
  backdrop-filter: blur(14px);
  transition: border-radius 0.9s ease;
}

.section-location.location-immersive .locx-map-organic:hover {
  border-radius: 26px;
}

.section-location.location-immersive .locx-map-shell {
  overflow: hidden;
  border-radius: inherit;
  aspect-ratio: 4 / 3;
  background: #fff;
}

.section-location.location-immersive .locx-map-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) sepia(0.2);
  transition: filter 0.95s ease;
}

.section-location.location-immersive .locx-map-organic:hover .locx-map-shell iframe {
  filter: grayscale(0) sepia(0);
}

.section-location.location-immersive .locx-map-card {
  position: absolute;
  right: -28px;
  bottom: -42px;
  max-width: min(76%, 290px);
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 53, 36, 0.16);
  box-shadow: 0 8px 20px rgba(18, 53, 36, 0.12);
  backdrop-filter: blur(14px);
}

.section-location.location-immersive .locx-map-card-line {
  width: 28px;
  height: 2px;
  background: var(--sand);
  margin-bottom: 10px;
}

.section-location.location-immersive .locx-map-card-title {
  margin: 0;
  color: #123524;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.section-location.location-immersive .locx-map-card-text {
  margin: 6px 0 0;
  color: rgba(18, 53, 36, 0.74);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.section-location.location-immersive .locx-info-col {
  padding-top: clamp(8px, 1.6vw, 18px);
}

.section-location.location-immersive .locx-kicker {
  margin: 0 0 10px;
  color: rgba(18, 53, 36, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-location.location-immersive .locx-title {
  margin: 0;
  color: #102f27;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-location.location-immersive .locx-title span {
  color: #164a42;
}

.section-location.location-immersive .locx-text {
  margin: 14px 0 0;
  color: rgba(18, 53, 36, 0.82);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62;
}

.section-location.location-immersive .locx-distance-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.section-location.location-immersive .locx-distance-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(18, 53, 36, 0.2);
  transition: border-color 0.25s ease;
}

.section-location.location-immersive .locx-distance-item:hover {
  border-color: rgba(18, 53, 36, 0.36);
}

.section-location.location-immersive .locx-distance-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-location.location-immersive .locx-distance-index {
  color: rgba(18, 53, 36, 0.42);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: color 0.25s ease;
}

.section-location.location-immersive .locx-distance-item:hover .locx-distance-index {
  color: #123524;
}

.section-location.location-immersive .locx-distance-city {
  margin: 0;
  color: rgba(18, 53, 36, 0.9);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-location.location-immersive .locx-distance-side {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-location.location-immersive .locx-distance-line {
  width: 0;
  height: 1px;
  background: rgba(18, 53, 36, 0.56);
  transition: width 0.35s ease;
}

.section-location.location-immersive .locx-distance-item:hover .locx-distance-line {
  width: 34px;
}

.section-location.location-immersive .locx-distance-value {
  margin: 0;
  color: rgba(18, 53, 36, 0.74);
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.section-location.location-immersive .locx-distance-item:hover .locx-distance-value {
  color: #0f2e27;
}

.section-location.location-immersive .locx-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.section-location.location-immersive .locx-actions .locx-btn-primary {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  background: #123524;
  color: #f5f1e8;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

.section-location.location-immersive .locx-actions .locx-btn-primary:hover,
.section-location.location-immersive .locx-actions .locx-btn-primary:focus-visible {
  background: #0f2e27;
  color: #f5f1e8;
}

.section-location.location-immersive .locx-actions .locx-btn-link {
  min-height: 48px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(18, 53, 36, 0.42);
  color: #123524;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-location.location-immersive .locx-actions .locx-btn-link:hover,
.section-location.location-immersive .locx-actions .locx-btn-link:focus-visible {
  background: rgba(18, 53, 36, 0.08);
  border-color: #123524;
  color: #123524;
}

.section-location.location-immersive .locx-signature {
  margin: clamp(88px, 12vw, 150px) 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-location.location-immersive .locx-signature-line {
  width: 1px;
  height: 66px;
  background: linear-gradient(to bottom, rgba(18, 53, 36, 0.34), transparent);
  margin-bottom: 26px;
}

.section-location.location-immersive .locx-signature p {
  margin: 0;
  color: rgba(18, 53, 36, 0.14);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.8vw, 4.8rem);
  font-style: italic;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1;
  user-select: none;
}

@media (max-width: 1080px) {
  .section-location.location-immersive .locx-head {
    margin-bottom: 28px;
  }

  .section-location.location-immersive .locx-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-location.location-immersive .locx-map-card {
    right: 14px;
    bottom: 14px;
  }

  .section-location.location-immersive .locx-info-col {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .section-location.location-immersive .locx-head-kicker p {
    letter-spacing: 0.12em;
  }

  .section-location.location-immersive .locx-mega {
    font-size: clamp(1.8rem, 8.2vw, 2.6rem);
    line-height: 1.08;
  }

  .section-location.location-immersive .locx-map-outline {
    inset: -6px -4px -4px -6px;
    border-radius: 24px;
  }

  .section-location.location-immersive .locx-map-organic {
    padding: 10px;
    border-radius: 24px;
  }

  .section-location.location-immersive .locx-map-shell iframe {
    min-height: 300px;
  }

  .section-location.location-immersive .locx-map-card {
    position: static;
    max-width: none;
    margin-top: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: none;
  }

  .section-location.location-immersive .locx-title {
    font-size: clamp(1.85rem, 8.4vw, 2.5rem);
  }

  .section-location.location-immersive .locx-distance-item {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .section-location.location-immersive .locx-distance-line {
    display: none;
  }

  .section-location.location-immersive .locx-distance-value {
    margin-left: auto;
    font-size: 1rem;
  }

  .section-location.location-immersive .locx-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .section-location.location-immersive .locx-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.section-social-proof {
  position: relative;
  background: linear-gradient(180deg, #0b6158 0%, #0a5f56 56%, #0c6158 100%);
  overflow: hidden;
  isolation: isolate;
}

.section-social-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 90% -10%, rgba(210, 177, 119, 0.16), transparent 68%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px);
  pointer-events: none;
}

.section-social-proof .container {
  position: relative;
  z-index: 2;
}

.social-proof-lux-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.social-proof-lux-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  z-index: 1;
  pointer-events: none;
}

.social-proof-lux-ambient--one {
  width: 500px;
  height: 500px;
  top: 0;
  left: -12%;
  background: rgba(234, 210, 162, 0.24);
  opacity: 0.2;
}

.social-proof-lux-ambient--two {
  width: 420px;
  height: 420px;
  bottom: 8%;
  right: -8%;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0.11;
}

.social-proof-lux-head {
  margin: 0 auto 34px;
  max-width: 860px;
  text-align: center;
}

.social-proof-lux-kicker-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.social-proof-lux-line {
  width: 48px;
  height: 1px;
  background: rgba(234, 210, 162, 0.86);
}

.social-proof-lux-kicker {
  margin: 0;
  color: rgba(234, 210, 162, 0.9);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.social-proof-lux-title {
  margin: 14px 0 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.social-proof-lux-title span {
  color: var(--sand);
  font-style: italic;
}

.social-proof-lux-subtitle {
  margin: 14px auto 0;
  max-width: 64ch;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.99rem;
  line-height: 1.55;
}

.social-proof-lux-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 14px;
}

.social-proof-lux-metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-proof-lux-metric-value {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-align: center;
}

.social-proof-lux-metric-value--cnpj {
  font-size: clamp(0.95rem, 1.9vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  word-break: keep-all;
}

.social-proof-lux-metric-label {
  margin: 9px 0 0;
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
  text-wrap: balance;
  text-align: center;
}

.social-proof-lux-testimonials-wrap {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.social-proof-lux-testimonials-kicker {
  margin: 0 0 14px;
  color: var(--sand-soft);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-proof-lux-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.social-proof-lux-testimonial-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  padding: 22px 20px;
  min-height: 188px;
}

.social-proof-lux-stars {
  display: inline-block;
  margin: 0;
  color: var(--sand);
  font-size: 0.92rem;
  letter-spacing: 0.2em;
}

.social-proof-lux-quote {
  margin: 10px 0 0;
  color: rgba(245, 241, 232, 0.93);
  font-size: clamp(1.02rem, 1.15vw, 1.12rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.social-proof-lux-name {
  margin: 16px 0 0;
  color: rgba(234, 210, 162, 0.96);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-proof-lux-actions {
  margin-top: 30px;
}

.home-funnel .section-blog {
  margin-top: 0;
  color: #123524;
}

.home-funnel .section-blog .section-title,
.home-funnel .section-blog .eyebrow {
  color: #123524;
}

.home-funnel .section-blog .section-subtitle {
  color: rgba(18, 53, 36, 0.82);
}

.home-funnel .section-blog .blog-grid {
  grid-template-columns: repeat(3, minmax(200px, 1fr));
}

.home-funnel .section-blog .blog-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(18, 53, 36, 0.14);
  border-radius: 10px;
  padding: 10px;
}

.home-funnel .section-blog .blog-card h3 {
  margin: 10px 0 8px;
  color: #123524;
  font-size: 1.12rem;
  line-height: 1.25;
}

.home-funnel .section-blog .blog-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(18, 53, 36, 0.82);
}

.home-funnel .section-blog .meta {
  color: rgba(18, 53, 36, 0.7);
}

.section-final-cta {
  position: relative;
  background: linear-gradient(180deg, #0b6158 0%, #0a5f56 56%, #0c6158 100%);
  overflow: hidden;
  isolation: isolate;
}

.section-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 70% at 90% -10%, rgba(210, 177, 119, 0.16), transparent 68%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 42px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' opacity='0.22' filter='url(%23noiseFilter)'/%3E%3C/svg%3E") 0 0 / 220px 220px repeat;
  pointer-events: none;
  z-index: 0;
}

.section-final-cta::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -10%;
  bottom: -24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  filter: blur(104px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.final-cta-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.final-benefits {
  margin: 20px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.final-benefits li {
  position: relative;
  padding-left: 24px;
  color: rgba(245, 241, 232, 0.9);
}

.final-benefits li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  position: absolute;
  left: 2px;
  top: 0.5em;
}

.final-cta-form-wrap {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px;
}

.final-cta-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.final-cta-form .form-field {
  display: grid;
  gap: 6px;
}

.final-cta-form .form-field:nth-last-child(2),
.final-cta-form .form-field:nth-last-child(3) {
  grid-column: span 2;
}

.final-cta-form label {
  font-size: 0.84rem;
  color: rgba(245, 241, 232, 0.92);
}

.final-cta-form input,
.final-cta-form select,
.final-cta-form textarea,
.final-cta-form .wpcf7-form-control {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.98);
  color: #173b36;
  padding: 0 12px;
  font-size: 0.92rem;
}

.final-cta-form button {
  grid-column: span 2;
  width: 100%;
}

.form-note {
  margin: 10px 0 0;
  color: rgba(245, 241, 232, 0.74);
  font-size: 0.81rem;
}

.final-cf7-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.final-cf7-form .wpcf7-form .hidden-fields-container {
  display: none;
}

.final-cf7-form .form-field {
  margin: 0;
  display: block;
}

.final-cf7-form .form-field p {
  margin: 0;
  display: grid;
  gap: 8px;
}

.final-cf7-form .wpcf7-form > p {
    margin: 2px 0 0;
    grid-column: 1 / -1;
    align-items: center;
    width: 100%;
}

.final-cf7-form .form-field br {
  display: none;
}

.final-cf7-form .wpcf7-form-control-wrap {
  display: block;
}

.final-cf7-form label {
  display: block;
  margin: 0;
  color: rgba(245, 241, 232, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
}

.final-cf7-form input,
.final-cf7-form select,
.final-cf7-form textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.98);
  color: #173b36;
  padding: 0 14px;
  font-size: 0.92rem;
  line-height: 1.2;
}

.final-cf7-form textarea {
  min-height: 110px;
  padding-top: 10px;
}

.final-cf7-form .wpcf7-submit {
  flex: 1 1 auto;
  width: 100%;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--sand);
  color: var(--teal-deep);
  cursor: pointer;
}

.final-cf7-form .wpcf7-spinner {
  margin-inline-start: 8px;
}

.final-cf7-form .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding: 11px 12px;
  border-radius: 9px;
  border: 1px solid rgba(234, 210, 162, 0.42);
  background: rgba(1, 30, 25, 0.34);
  color: rgba(245, 241, 232, 0.94);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.final-cf7-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(97, 206, 112, 0.62);
  background: rgba(97, 206, 112, 0.17);
  color: #e6ffe8;
  padding: 20px;
  margin: 0;
}

.final-cf7-form .wpcf7 form.invalid .wpcf7-response-output,
.final-cf7-form .wpcf7 form.unaccepted .wpcf7-response-output,
.final-cf7-form .wpcf7 form.failed .wpcf7-response-output,
.final-cf7-form .wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(255, 168, 168, 0.68);
  background: rgba(127, 19, 19, 0.26);
  color: #ffe6e6;
}

.final-cf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #ffd4d4;
  font-size: 0.76rem;
  line-height: 1.25;
}

.final-cf7-form .wpcf7-not-valid {
  border-color: rgba(255, 143, 143, 0.72) !important;
  background: rgba(255, 244, 244, 0.98);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1ebf5f;
  color: #fff;
  font-size: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.home .whatsapp-float {
  box-shadow: none;
}

.whatsapp-float::before {
  content: "";
  width: 26px;
  height: 26px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M380.9 97.1C339-44.3 150.9-58.2 59.9 30.4 7.7 81.3-10.5 157.6 8.9 229.4L0 288l60.2-8.5c115.1 63.1 255.7-20.7 256.3-149.5.3-40-14.8-78.2-42.4-106.9zM224 438.4c-30.2 0-59.9-8.1-86-23.3l-6.1-3.6-35.7 5 5.2-34.8-4-6.1c-17.9-27-27.3-58.5-27.3-91.3 0-90.3 73.5-163.8 163.8-163.8s163.8 73.5 163.8 163.8S314.3 438.4 224 438.4zm89.6-123.7c-4.9-2.5-29-14.3-33.5-15.9-4.5-1.7-7.8-2.5-11.1 2.5-3.3 4.9-12.7 15.9-15.6 19.2-2.9 3.3-5.7 3.7-10.6 1.2-29-14.5-48-25.9-67.2-58.7-5.1-8.8 5.1-8.2 14.5-27.3 1.6-3.3.8-6.1-.4-8.6-1.2-2.5-11.1-26.7-15.2-36.6-4-9.6-8-8.2-11.1-8.4-2.9-.1-6.1-.1-9.4-.1-3.3 0-8.6 1.2-13.1 6.1-4.5 4.9-17.2 16.8-17.2 41 0 24.2 17.6 47.6 20 50.9 2.5 3.3 34.5 52.7 83.5 73.9 11.7 5.1 20.8 8.2 27.9 10.5 11.7 3.7 22.4 3.2 30.8 1.9 9.4-1.4 29-11.8 33.1-23.2 4.1-11.4 4.1-21.2 2.9-23.2-1.2-2-4.5-3.3-9.4-5.7z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.footer-links-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-links-legal a {
  font-size: 0.85rem;
  color: #fff;
  opacity: 0.86;
}

.footer-links-legal a:hover,
.footer-links-legal a:focus-visible {
  color: var(--header-accent-exact);
}

.footer-legal-inline {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .differentials-lux-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .social-proof-lux-metrics-grid {
    grid-template-columns: repeat(2, minmax(170px, 1fr));
  }

  .social-proof-lux-testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .place-layout,
  .location-immersive .locx-grid,
  .final-cta-shell {
    grid-template-columns: 1fr;
  }

  .home-funnel .section-blog .blog-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .hero-video {
    display: block;
  }

  .home-funnel .section {
    padding: 62px 0;
  }

  .home-funnel .hero {
    min-height: 560px;
    padding: 96px 0 88px;
  }

  .home-funnel .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
  }

  .home-funnel .hero-copy::before {
    inset: -10px -10px -12px;
    border-radius: 14px;
  }

  .home-funnel .hero-actions,
  .home-funnel .section-actions {
    align-items: stretch;
  }

  .home-funnel .hero-actions .btn,
  .home-funnel .section-actions .btn,
  .home-funnel .section-actions-inline .btn {
    width: 100%;
  }

  .home-funnel .hero-actions .btn-hero-secondary {
    width: auto;
    padding: 6px 0;
    border-bottom: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    align-self: flex-start;
  }

  .urgency-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    text-align: left;
  }

  .urgency-kicker {
    margin-bottom: 4px;
  }

  .urgency-text {
    font-size: clamp(1.02rem, 5.4vw, 1.25rem);
  }

  .urgency-subtext {
    margin-top: 3px;
    font-size: 0.9rem;
  }

  .home-funnel .btn-urgency {
    width: 100%;
  }

  .differentials-lux-grid,
  .infra-grid,
  .social-proof-lux-metrics-grid,
  .social-proof-lux-testimonials-grid,
  .home-funnel .section-blog .blog-grid,
  .final-cta-form,
  .final-cf7-form .wpcf7-form {
    grid-template-columns: 1fr;
  }

  .final-cf7-form .wpcf7-form {
    gap: 12px;
  }

  .section-infrastructure .infra-intro {
    padding: 20px 16px;
    text-align: left;
  }

  .section-infrastructure .infra-intro .section-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .infra-proof {
    margin-top: 16px;
    max-width: none;
    padding: 12px;
  }

  .infra-proof-value {
    font-size: 0.95rem;
  }

  .infra-proof-note {
    font-size: 0.82rem;
  }

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

  .infra-card {
    min-height: 70px;
    padding: 12px 14px;
    gap: 10px;
  }

  .infra-card-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 10px;
  }

  .infra-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .infra-card-title {
    font-size: 0.93rem;
  }

  .infra-card-label {
    font-size: 0.64rem;
  }

  .place-slider {
    padding: 12px;
  }

  .place-layout {
    gap: 20px;
  }

  .place-slider-arrow {
    width: 40px;
    height: 40px;
  }

  .place-slider-arrow span {
    font-size: 1.7rem;
  }

  .place-slider-thumb {
    flex-basis: 92px;
    height: 58px;
  }

  .place-slider-thumb-video {
    flex-basis: 102px;
  }

  .place-instagram {
    width: 100%;
    overflow: hidden;
  }

  .place-instagram .btn {
    width: 100%;
    justify-content: center;
  }

  .instagram-feed-shell,
  .instagram-feed-shell #sb_instagram,
  .instagram-feed-shell .sbi,
  .instagram-feed-shell #sbi_images,
  .instagram-feed-shell .sb_instagram_header {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    overflow: hidden;
  }

  .instagram-feed-shell #sbi_images {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px !important;
  }

  .instagram-feed-shell #sbi_images .sbi_item {
    width: auto !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .instagram-feed-shell #sbi_images .sbi_photo_wrap,
  .instagram-feed-shell #sbi_images .sbi_photo {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
  }

  .final-cta-form .form-field:nth-last-child(2),
  .final-cta-form .form-field:nth-last-child(3),
  .final-cta-form button {
    grid-column: auto;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 520px) {
  .place-slider-thumb {
    flex-basis: 84px;
    height: 54px;
  }

  .place-slider-thumb-video {
    flex-basis: 94px;
  }
}

/* Place Section V2 (isolated rewrite) */
.section-place .place2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: center;
}

.section-place .place2-gallery-card,
.section-place .place2-instagram-card {
  min-width: 0;
}

.section-place .place2-gallery-card {
  border-radius: 18px;
  border: 1px solid rgba(18, 53, 36, 0.16);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 30px rgba(16, 51, 45, 0.12);
  padding: 14px;
}

.section-place .place2-slider {
  position: relative;
}

.section-place .place2-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  transition: height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.section-place .place2-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

.section-place .place2-slide {
  margin: 0;
  min-width: 100%;
  flex: 0 0 100%;
}

.section-place .place2-slide img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-place .place2-slide--video {
  position: relative;
}

.section-place .place2-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-place .place2-video-frame--portrait {
  background:
    radial-gradient(circle at center, rgba(34, 73, 63, 0.38) 0%, rgba(12, 32, 26, 0.88) 48%, rgba(5, 16, 13, 0.96) 100%),
    linear-gradient(180deg, rgba(8, 28, 22, 0.96) 0%, rgba(4, 13, 11, 0.98) 100%);
}

.section-place .place2-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(8, 28, 22, 0.26);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.section-place .place2-video-frame video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section-place .place2-video-frame--portrait video {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-inline: auto;
}

.section-place .place2-video-play-overlay {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 22, 18, 0.72);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.section-place .place2-video-play-overlay span {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #f5f1e8;
  margin-left: 4px;
}

.section-place .place2-video-play-overlay:hover,
.section-place .place2-video-play-overlay:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(7, 28, 22, 0.86);
}

.section-place .place2-video-play-overlay:focus-visible {
  outline: 3px solid rgba(245, 241, 232, 0.62);
  outline-offset: 2px;
}

.section-place .place2-video-frame.is-playing .place2-video-play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.section-place .place2-video-frame.is-playing::after {
  opacity: 0;
}

.section-place .place2-video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 41, 33, 0.62);
  color: #f5f1e8;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-place .place2-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 32, 26, 0.8);
  color: #f5f1e8;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.section-place .place2-arrow span {
  font-size: 1.9rem;
  line-height: 1;
}

.section-place .place2-arrow--prev {
  left: 10px;
}

.section-place .place2-arrow--next {
  right: 10px;
}

.section-place .place2-arrow:hover,
.section-place .place2-arrow:focus-visible {
  background: rgba(12, 40, 32, 0.94);
}

.section-place .place2-thumbs {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: thin;
}

.section-place .place2-thumb {
  flex: 0 0 100px;
  height: 60px;
  border: 2px solid transparent;
  border-radius: 9px;
  padding: 0;
  background: rgba(18, 53, 36, 0.22);
  overflow: hidden;
  cursor: pointer;
}

.section-place .place2-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-place .place2-thumb--video {
  flex-basis: 112px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(8, 34, 27, 0.84) 0%, rgba(13, 51, 41, 0.72) 100%);
}

.section-place .place2-thumb--video span {
  color: #f5f1e8;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-place .place2-thumb.is-active {
  border-color: #123524;
  box-shadow: 0 0 0 1px rgba(18, 53, 36, 0.28);
}

.section-place .place2-thumb:focus-visible {
  outline: 3px solid rgba(18, 53, 36, 0.45);
  outline-offset: 2px;
}

.section-place .place2-instagram-card {
  border-radius: 18px;
  border: 1px solid rgba(18, 53, 36, 0.14);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 24px rgba(16, 51, 45, 0.08);
  padding: 16px;
}

@media (max-width: 1080px) {
  .section-place .place2-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .section-place .place2-gallery-card {
    padding: 12px;
  }

  .section-place .place2-slide--video-portrait .place2-video-frame {
    aspect-ratio: 9 / 16;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .section-place .place2-slide--video-portrait .place2-video-frame video {
    width: 100%;
    max-width: none;
    height: 100%;
  }

  .section-place .place2-video-play-overlay {
    width: 70px;
    height: 70px;
  }

  .section-place .place2-video-play-overlay span {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .section-place .place2-arrow {
    width: 38px;
    height: 38px;
  }

  .section-place .place2-arrow span {
    font-size: 1.6rem;
  }

  .section-place .place2-thumb {
    flex-basis: 90px;
    height: 56px;
  }

  .section-place .place2-thumb--video {
    flex-basis: 102px;
  }
}

@media (max-width: 520px) {
  .section-place .place2-video-play-overlay {
    width: 62px;
    height: 62px;
  }

  .section-place .place2-video-play-overlay span {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .section-place .place2-thumb {
    flex-basis: 84px;
    height: 52px;
  }

  .section-place .place2-thumb--video {
    flex-basis: 96px;
  }
}

/* Mobile hotfix: evita recorte dos numeros na secao de condicoes */
@media (max-width: 767px) {
  .section-conditions .conditions-lux-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: auto;
    padding-top: 6px;
  }

  .section-conditions .conditions-lux-number {
    position: relative;
    inset: auto;
    transform: none;
    display: block;
    width: auto;
    margin: 0 0 10px;
    font-size: clamp(3.8rem, 21vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.03em;
    opacity: 1;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }

  .section-conditions .conditions-lux-number--long {
    white-space: normal;
    font-size: clamp(3.1rem, 15vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    gap: 0.12em;
  }

  .section-conditions .conditions-lux-number--long small {
    font-size: 0.31em;
    letter-spacing: 0.1em;
  }

  .section-conditions .conditions-lux-number--wide {
    font-size: clamp(3rem, 15vw, 4.6rem);
    letter-spacing: -0.02em;
  }

  .section-conditions .conditions-lux-number--brand {
    width: min(72vw, 280px);
  }

  .section-conditions .conditions-lux-content {
    width: min(100%, 340px);
    padding-top: 0;
  }

  .section-conditions .conditions-lux-block h3 {
    max-width: 17ch;
  }

  .section-conditions .conditions-lux-block:hover .conditions-lux-number,
  .section-conditions .conditions-lux-block:focus-within .conditions-lux-number {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 420px) {
  .section-conditions .conditions-lux-number {
    font-size: clamp(3.2rem, 19vw, 4.8rem);
    line-height: 0.96;
    margin-bottom: 12px;
  }

  .section-conditions .conditions-lux-number--long {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    margin-bottom: 10px;
  }

  .section-conditions .conditions-lux-number--wide {
    font-size: clamp(2.6rem, 13vw, 3.9rem);
  }

  .section-conditions .conditions-lux-number--brand {
    width: min(78vw, 240px);
  }
}

/* --------------------------------------------------------------------------
   Content Templates (blog, single, page, archive, search, 404)
   -------------------------------------------------------------------------- */
.site-main--content {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #eadbbe 0%, #dfc99e 52%, #d6bb85 100%);
  color: #163f37;
}

.site-main--content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.28) 0, rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 86% 8%, rgba(0, 88, 79, 0.1) 0, rgba(0, 88, 79, 0) 38%),
    repeating-linear-gradient(140deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
  pointer-events: none;
  z-index: 0;
}

.site-main--content::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -120px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.content-shell {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 7vw, 108px) 0;
}

.site-main--content .eyebrow {
  color: rgba(0, 88, 79, 0.7);
}

.site-main--content .section-title {
  color: #103f37;
}

.site-main--content .section-subtitle {
  color: rgba(16, 63, 55, 0.78);
}

.site-main--content .btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 10px;
}

.site-main--content .btn-primary {
  background: #0f655b;
  color: #fff;
}

.site-main--content .btn-primary:hover,
.site-main--content .btn-primary:focus-visible {
  color: #fff;
}

.site-main--content .btn-outline {
  border: 1px solid rgba(16, 63, 55, 0.35);
  color: #103f37;
  background: transparent;
}

.site-main--content .btn-outline:hover,
.site-main--content .btn-outline:focus-visible {
  border-color: #103f37;
  color: #103f37;
  background: rgba(16, 63, 55, 0.06);
}

.content-head {
  margin: 0 auto 30px;
  max-width: 760px;
  text-align: center;
}

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

.content-card {
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(16, 63, 55, 0.16);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 34px rgba(15, 63, 55, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.content-card:hover,
.content-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(15, 101, 91, 0.42);
  box-shadow: 0 22px 38px rgba(15, 63, 55, 0.12);
}

.content-card__media-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.content-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.content-card:hover .content-card__media,
.content-card:focus-within .content-card__media {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.content-card__body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
  height: 100%;
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(16, 63, 55, 0.66);
}

.content-card__meta > * + * {
  position: relative;
  margin-left: 10px;
  padding-left: 12px;
}

.content-card__meta > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(15, 101, 91, 0.58);
}

.content-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.6vw, 1.36rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.content-card__title a {
  color: #113f37;
  transition: color 0.2s ease;
}

.content-card__title a:hover,
.content-card__title a:focus-visible {
  color: #0f655b;
}

.content-card__excerpt {
  margin: 0;
  color: rgba(16, 63, 55, 0.82);
  font-size: 0.96rem;
  line-height: 1.54;
}

.content-card__readmore {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f655b;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card__readmore:hover,
.content-card__readmore:focus-visible {
  color: #0a4f47;
}

.navigation.pagination {
  margin-top: 28px;
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.navigation.pagination .page-numbers {
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(16, 63, 55, 0.2);
  background: rgba(255, 255, 255, 0.54);
  color: #103f37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

.navigation.pagination .page-numbers.current {
  background: #0f655b;
  border-color: #0f655b;
  color: #fff;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers:focus-visible {
  border-color: rgba(15, 101, 91, 0.72);
  color: #0f655b;
}

.entry-single {
  max-width: min(960px, 100%);
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(15, 63, 55, 0.16);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 50px rgba(15, 63, 55, 0.12);
  overflow: hidden;
}

.entry-single__media {
  aspect-ratio: 16 / 8.8;
  background: rgba(255, 255, 255, 0.74);
}

.entry-single__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-single__header {
  padding: 34px 38px 18px;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.entry-meta span,
.entry-meta time {
  min-height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 101, 91, 0.24);
  background: rgba(15, 101, 91, 0.08);
  color: rgba(16, 63, 55, 0.88);
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.entry-single__title {
  margin: 0;
  color: #113f37;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.entry-body {
  max-width: 74ch;
  margin: 0 auto;
  padding: 0 38px 38px;
  color: rgba(15, 58, 51, 0.9);
  font-size: 1.05rem;
  line-height: 1.78;
}

.entry-body > *:first-child {
  margin-top: 0;
}

.entry-body p,
.entry-body ul,
.entry-body ol {
  margin: 0 0 1.15em;
}

.entry-body h2,
.entry-body h3,
.entry-body h4 {
  margin: 1.45em 0 0.55em;
  color: #103f37;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.entry-body a {
  color: #0f655b;
  text-decoration: underline;
  text-decoration-color: rgba(15, 101, 91, 0.35);
  text-underline-offset: 3px;
}

.entry-body img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(15, 63, 55, 0.12);
  box-shadow: 0 16px 28px rgba(15, 63, 55, 0.12);
  margin: 10px 0 20px;
}

.entry-body .wp-caption {
  max-width: 100%;
}

.entry-body .wp-caption-text {
  margin-top: 8px;
  font-size: 0.86rem;
  color: rgba(16, 63, 55, 0.68);
}

.entry-body blockquote {
  margin: 1.4em 0;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid rgba(15, 101, 91, 0.6);
  background: rgba(15, 101, 91, 0.06);
  color: rgba(15, 58, 51, 0.86);
  border-radius: 10px;
}

.entry-body li + li {
  margin-top: 0.38em;
}

.entry-links {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 63, 55, 0.14);
  color: rgba(16, 63, 55, 0.76);
}

.entry-single__footer {
  border-top: 1px solid rgba(16, 63, 55, 0.14);
  padding: 22px 38px 30px;
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.post-nav__item {
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.56);
  display: flex;
  align-items: center;
  padding: 10px 14px;
}

.post-nav__item a {
  color: #103f37;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.post-nav__item a:hover,
.post-nav__item a:focus-visible {
  color: #0f655b;
}

.post-nav__item--next {
  justify-content: flex-end;
  text-align: right;
}

.entry-single__cta {
  margin-top: 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 101, 91, 0.22);
  background: linear-gradient(135deg, rgba(7, 86, 76, 0.95), rgba(11, 103, 92, 0.92));
  padding: 18px;
}

.entry-single__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.entry-single__cta-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.entry-single__cta-actions .btn {
  min-height: 44px;
  padding: 0 18px;
}

.entry-single__cta .btn-primary {
  background: var(--sand);
  color: var(--teal-deep);
}

.entry-single__cta .btn-primary:hover,
.entry-single__cta .btn-primary:focus-visible {
  color: var(--teal-deep);
}

.entry-single__cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.64);
  color: #fff;
}

.entry-single__cta .btn-outline:hover,
.entry-single__cta .btn-outline:focus-visible {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.entry-page .entry-single__header {
  padding-bottom: 6px;
}

.entry-page .entry-body {
  max-width: none;
}

/* Single editorial (referencia visual) */
.site-main--single .content-shell {
  padding-top: clamp(58px, 6vw, 86px);
}

.site-main--single .single-news {
  max-width: 1120px;
  margin: 0 auto;
}

.site-main--single .single-news__hero {
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 36px rgba(15, 63, 55, 0.09);
  padding: clamp(24px, 3vw, 34px);
}

.site-main--single .single-news__category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 101, 91, 0.28);
  background: rgba(15, 101, 91, 0.08);
  color: #0d5f56;
  font-family: var(--font-display);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-main--single .single-news__category:hover,
.site-main--single .single-news__category:focus-visible {
  border-color: rgba(15, 101, 91, 0.48);
  color: #084b44;
}

.site-main--single .single-news__title {
  margin: 12px 0 0;
  color: #113f37;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.site-main--single .single-news__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: rgba(16, 63, 55, 0.72);
  font-size: 0.83rem;
}

.site-main--single .single-news__meta > * + * {
  position: relative;
  margin-left: 12px;
  padding-left: 14px;
}

.site-main--single .single-news__meta > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-radius: 50%;
  background: rgba(15, 101, 91, 0.5);
}

.site-main--single .single-news__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 20px;
  align-items: start;
}

.site-main--single .single-news__content {
  border-radius: 16px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 34px rgba(15, 63, 55, 0.08);
  overflow: hidden;
}

.site-main--single .single-news__cover {
  margin: 0;
  border-bottom: 1px solid rgba(16, 63, 55, 0.12);
}

.site-main--single .single-news__cover-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.site-main--single .single-news__entry {
  padding: clamp(22px, 3vw, 34px);
  color: rgba(15, 58, 51, 0.9);
  font-size: 1.06rem;
  line-height: 1.8;
}

.site-main--single .single-news__entry > *:first-child {
  margin-top: 0;
}

.site-main--single .single-news__entry p,
.site-main--single .single-news__entry ul,
.site-main--single .single-news__entry ol {
  margin: 0 0 1.18em;
}

.site-main--single .single-news__entry h2,
.site-main--single .single-news__entry h3,
.site-main--single .single-news__entry h4 {
  margin: 1.5em 0 0.52em;
  color: #103f37;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.site-main--single .single-news__entry a {
  color: #0f655b;
  text-decoration: underline;
  text-decoration-color: rgba(15, 101, 91, 0.36);
  text-underline-offset: 3px;
}

.site-main--single .single-news__entry img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(15, 63, 55, 0.12);
  box-shadow: 0 14px 26px rgba(15, 63, 55, 0.12);
  margin: 10px 0 20px;
}

.site-main--single .single-news__entry blockquote {
  margin: 1.4em 0;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid rgba(15, 101, 91, 0.6);
  background: rgba(15, 101, 91, 0.06);
  color: rgba(15, 58, 51, 0.86);
  border-radius: 10px;
}

.site-main--single .single-news__entry .wp-caption {
  max-width: 100%;
}

.site-main--single .single-news__entry .wp-caption-text {
  margin-top: 8px;
  font-size: 0.86rem;
  color: rgba(16, 63, 55, 0.68);
}

.site-main--single .single-news__entry .entry-links {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 63, 55, 0.14);
  color: rgba(16, 63, 55, 0.76);
}

.site-main--single .single-share {
  border-top: 1px solid rgba(16, 63, 55, 0.14);
  padding: 18px clamp(22px, 3vw, 34px) 4px;
}

.site-main--single .single-share__title {
  margin: 0;
  color: #103f37;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-main--single .single-share__list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-main--single .single-share__item {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 63, 55, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: #103f37;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-main--single .single-share__item:hover,
.site-main--single .single-share__item:focus-visible {
  border-color: rgba(15, 101, 91, 0.5);
  color: #0f655b;
}

.site-main--single .single-news__post-nav {
  border-top: 1px solid rgba(16, 63, 55, 0.14);
  padding: 16px clamp(22px, 3vw, 34px) 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-main--single .single-news__post-nav-item a {
  min-height: 66px;
  border-radius: 11px;
  border: 1px solid rgba(16, 63, 55, 0.15);
  background: rgba(255, 255, 255, 0.76);
  color: #103f37;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
}

.site-main--single .single-news__post-nav-item a:hover,
.site-main--single .single-news__post-nav-item a:focus-visible {
  border-color: rgba(15, 101, 91, 0.4);
}

.site-main--single .single-news__post-nav-item--next a {
  text-align: right;
}

.site-main--single .single-news__post-nav-label {
  color: rgba(16, 63, 55, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main--single .single-news__post-nav-title {
  color: #103f37;
  font-size: 0.9rem;
  line-height: 1.38;
  font-weight: 600;
}

.site-main--single .single-news__sidebar {
  position: relative;
}

.site-main--single .single-related {
  position: sticky;
  top: 24px;
  border-radius: 16px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 30px rgba(15, 63, 55, 0.08);
  padding: 16px;
}

.site-main--single .single-related__title {
  margin: 0;
  color: #103f37;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-main--single .single-related__list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.site-main--single .single-related__card {
  border-radius: 10px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.site-main--single .single-related__media-link {
  display: block;
  aspect-ratio: 16 / 9;
}

.site-main--single .single-related__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-main--single .single-related__body {
  padding: 10px 11px 12px;
}

.site-main--single .single-related__date {
  color: rgba(16, 63, 55, 0.66);
  font-size: 0.74rem;
}

.site-main--single .single-related__card-title {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.33;
  font-family: var(--font-display);
}

.site-main--single .single-related__card-title a {
  color: #103f37;
}

.site-main--single .single-related__card-title a:hover,
.site-main--single .single-related__card-title a:focus-visible {
  color: #0f655b;
}

.site-main--single .single-related__empty {
  margin: 12px 0 0;
  color: rgba(16, 63, 55, 0.76);
}

.search-shell {
  margin: 0 auto 24px;
  max-width: 860px;
}

.search-form-theme {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-form-theme .search-field {
  flex: 1 1 auto;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(16, 63, 55, 0.2);
  background: rgba(255, 255, 255, 0.68);
  color: #103f37;
  padding: 0 14px;
}

.search-form-theme .search-field::placeholder {
  color: rgba(16, 63, 55, 0.5);
}

.search-form-theme .search-field:focus-visible {
  outline: 2px solid rgba(15, 101, 91, 0.58);
  outline-offset: 1px;
}

.search-form-theme .search-submit {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px;
}

.content-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(16, 63, 55, 0.16);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
}

.content-empty__title {
  margin: 0;
  color: #113f37;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.content-empty__text {
  margin: 12px auto 0;
  max-width: 56ch;
  color: rgba(16, 63, 55, 0.8);
}

.content-empty__actions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.error-404-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 44px);
  border-radius: 16px;
  border: 1px solid rgba(16, 63, 55, 0.16);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.error-404-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.error-404-search {
  margin: 20px auto 0;
  max-width: 620px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  background-color: #fff;
  color: #000;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 8px;
  line-height: normal;
  padding: 12px;
  text-decoration: none;
  top: 8px;
  width: auto;
  z-index: 100000;
}

@media (max-width: 1080px) {
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-main--single .single-news__layout {
    grid-template-columns: 1fr;
  }

  .site-main--single .single-related {
    position: static;
  }

  .site-main--single .single-news__hero,
  .site-main--single .single-news__content {
    border-radius: 14px;
  }

  .entry-single__header,
  .entry-body,
  .entry-single__footer {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 767px) {
  .content-shell {
    padding: 64px 0;
  }

  .content-head {
    margin-bottom: 22px;
  }

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

  .entry-single__header {
    padding-top: 20px;
    padding-bottom: 14px;
  }

  .entry-body,
  .entry-single__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .entry-single__title {
    font-size: clamp(1.58rem, 8vw, 2.24rem);
  }

  .entry-body {
    font-size: 1rem;
    line-height: 1.72;
  }

  .site-main--single .single-news__hero {
    padding: 20px;
  }

  .site-main--single .single-news__title {
    font-size: clamp(1.58rem, 7.6vw, 2.25rem);
  }

  .site-main--single .single-news__entry {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .site-main--single .single-share {
    padding: 16px 20px 4px;
  }

  .site-main--single .single-news__post-nav {
    grid-template-columns: 1fr;
    padding: 16px 20px 20px;
  }

  .site-main--single .single-news__post-nav-item--next a {
    text-align: left;
  }

  .site-main--single .single-related {
    padding: 14px;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav__item--next {
    justify-content: flex-start;
    text-align: left;
  }

  .search-form-theme {
    flex-direction: column;
    align-items: stretch;
  }

  .search-form-theme .search-submit {
    width: 100%;
  }

  .error-404-actions,
  .content-empty__actions,
  .entry-single__cta-actions {
    flex-direction: column;
  }

  .error-404-actions .btn,
  .content-empty__actions .btn,
  .entry-single__cta-actions .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Single refinement (menos card, mais editorial)
   -------------------------------------------------------------------------- */
.site-main--single .content-shell {
  padding-top: clamp(52px, 5vw, 72px);
}

.site-main--single .single-news__hero {
  margin: 0 0 18px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-main--single .single-news__title {
  margin-top: 8px;
  font-size: clamp(2.05rem, 3.5vw, 3rem);
}

.site-main--single .single-news__meta {
  margin-top: 12px;
  font-size: 0.84rem;
}

.site-main--single .single-news__layout {
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 312px);
}

.site-main--single .single-news__content {
  border-radius: 12px;
  border: 1px solid rgba(16, 63, 55, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(15, 63, 55, 0.08);
}

.site-main--single .single-news__entry {
  padding: 26px 26px 30px;
  font-size: 1.03rem;
  line-height: 1.76;
  color: rgba(15, 58, 51, 0.9);
}

.site-main--single .single-news__entry > :first-child {
  margin-top: 0 !important;
}

.site-main--single .single-news__entry figure {
  margin: 0 0 1.2em;
}

.site-main--single .single-news__entry img,
.site-main--single .single-news__entry figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: 560px;
  object-fit: cover;
  border-radius: 10px;
}

.site-main--single .single-news__entry img[src=""],
.site-main--single .single-news__entry img:not([src]) {
  display: none !important;
}

.site-main--single .single-news__entry iframe,
.site-main--single .single-news__entry video {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}

.site-main--single .single-share {
  padding-top: 16px;
}

.site-main--single .single-share__item {
  background: #fff;
}

.site-main--single .single-news__post-nav {
  padding-top: 14px;
}

.site-main--single .single-related {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 22px rgba(15, 63, 55, 0.08);
}

@media (max-width: 1080px) {
  .site-main--single .single-news__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-main--single .single-news__hero {
    margin-bottom: 14px;
    padding: 0;
  }

  .site-main--single .single-news__entry {
    padding: 18px 18px 22px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .site-main--single .single-news__title {
    font-size: clamp(1.58rem, 8vw, 2.18rem);
  }

  .site-main--single .single-share {
    padding: 14px 18px 2px;
  }

  .site-main--single .single-news__post-nav {
    padding: 14px 18px 18px;
  }
}

/* --------------------------------------------------------------------------
   Single final v3 (editorial, same vibe as reference)
   -------------------------------------------------------------------------- */
.site-main--single.site-main--content {
  background: #e3d1a5;
}

.site-main--single.site-main--content::before,
.site-main--single.site-main--content::after {
  display: none;
}

.site-main--single .content-shell {
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(70px, 6vw, 94px);
}

.site-main--single .single-news__hero {
  position: relative;
  min-height: clamp(240px, 32vw, 390px);
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 18px;
  padding: 0;
  box-shadow: 0 16px 34px rgba(8, 38, 33, 0.22);
  display: flex;
  align-items: flex-end;
}

.site-main--single .single-news__hero--image {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.58) 72%, rgba(0, 0, 0, 0.72) 100%),
    var(--single-hero-image) center/cover no-repeat;
}

.site-main--single .single-news__hero--solid {
  background: linear-gradient(150deg, #0f655b 0%, #0c574f 50%, #08453f 100%);
}

.site-main--single .single-news__hero-inner {
  width: 100%;
  padding: clamp(20px, 3vw, 32px);
}

.site-main--single .single-news__category {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.site-main--single .single-news__category:hover,
.site-main--single .single-news__category:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.site-main--single .single-news__title {
  margin: 10px 0 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
}

.site-main--single .single-news__meta {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.site-main--single .single-news__meta > * + *::before {
  background: rgba(255, 255, 255, 0.72);
}

.site-main--single .single-news__layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.site-main--single .single-news__content {
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 51, 0.1);
  background: #f9f8f4;
  box-shadow: 0 10px 22px rgba(11, 58, 51, 0.08);
}

.site-main--single .single-news__entry {
  padding: 26px 28px 30px;
  font-size: 1.04rem;
  line-height: 1.76;
}

.site-main--single .single-news__entry h2,
.site-main--single .single-news__entry h3,
.site-main--single .single-news__entry h4 {
  color: #0d4f47;
}

.site-main--single .single-news__entry img,
.site-main--single .single-news__entry figure img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid rgba(11, 58, 51, 0.12);
  background: #fff;
}

.site-main--single .single-news__entry > :first-child {
  margin-top: 0 !important;
}

.site-main--single .single-news__entry .wp-block-image,
.site-main--single .single-news__entry figure {
  margin-top: 0;
}

.site-main--single .single-share {
  border-top: 1px solid rgba(11, 58, 51, 0.12);
  padding: 18px 28px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0) 100%);
}

.site-main--single .single-share__title {
  margin: 0 0 10px;
  color: #0c5249;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main--single .single-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.site-main--single .single-share__item {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid rgba(12, 82, 73, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #0c5249;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-main--single .single-share__item:hover,
.site-main--single .single-share__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(12, 82, 73, 0.42);
  background: #fff;
}

.site-main--single .single-news__post-nav {
  border-top: 1px solid rgba(11, 58, 51, 0.12);
  padding: 16px 28px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.site-main--single .single-news__post-nav--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.site-main--single .single-news__post-nav-item a {
  min-height: 62px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11, 58, 51, 0.16);
  background: #fff;
  box-shadow: 0 6px 14px rgba(11, 58, 51, 0.06);
}

.site-main--single .single-news__post-nav-label {
  margin-bottom: 4px;
}

.site-main--single .single-news__post-nav-title {
  line-height: 1.32;
}

.site-main--single .single-news__sidebar {
  align-self: start;
}

.site-main--single .single-related {
  position: sticky;
  top: 18px;
  border-radius: 12px;
  border: 1px solid rgba(11, 58, 51, 0.12);
  background: rgba(249, 248, 244, 0.98);
  box-shadow: 0 10px 24px rgba(11, 58, 51, 0.1);
}

.site-main--single .single-related__title {
  font-size: 0.98rem;
  text-transform: none;
}

.site-main--single .single-related__card {
  border-radius: 8px;
  background: #fff;
}

.site-main--single .single-related__media-link {
  aspect-ratio: 16 / 8.8;
}

.site-main--single .single-news__entry .wp-block-gallery,
.site-main--single .single-news__entry .gallery {
  margin: 1.3rem 0;
}

.site-main--single .single-news__entry .wp-block-gallery {
  gap: 10px;
}

.site-main--single .single-news__entry .wp-block-gallery > .wp-block-image,
.site-main--single .single-news__entry .wp-block-gallery .blocks-gallery-item,
.site-main--single .single-news__entry .wp-block-gallery li {
  margin: 0;
}

.site-main--single .single-news__entry .wp-block-gallery img,
.site-main--single .single-news__entry .gallery .gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(11, 58, 51, 0.12);
  background: #fff;
}

.site-main--single .single-news__entry .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.site-main--single .single-news__entry .gallery .gallery-item {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
}

.site-main--single .single-news__entry .gallery .gallery-icon,
.site-main--single .single-news__entry .gallery .gallery-icon a {
  display: block;
}

.site-main--single .single-news__entry .gallery .gallery-caption {
  margin-top: 6px;
  color: rgba(11, 58, 51, 0.68);
  font-size: 0.78rem;
  line-height: 1.4;
}

.site-main--single .single-news__entry .wp-gallery-item-hidden {
  display: none !important;
}

.site-main--single .single-news__entry .wp-gallery-load-more-wrap {
  margin: 12px 0 4px;
  display: flex;
  justify-content: center;
}

.site-main--single .single-news__entry .wp-gallery-load-more {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(12, 82, 73, 0.24);
  background: #fff;
  color: #0c5249;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main--single .single-news__entry .wp-gallery-load-more__remaining {
  margin-left: 8px;
  font-size: 0.72rem;
  color: rgba(12, 82, 73, 0.72);
}

@media (max-width: 1080px) {
  .site-main--single .single-news__layout {
    grid-template-columns: 1fr;
  }

  .site-main--single .single-related {
    position: static;
  }

  .site-main--single .single-news__entry .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-main--single .single-news__hero {
    min-height: 220px;
    border-radius: 10px;
  }

  .site-main--single .single-news__hero-inner {
    padding: 18px;
  }

  .site-main--single .single-news__title {
    font-size: clamp(1.56rem, 7.7vw, 2.2rem);
  }

  .site-main--single .single-news__entry {
    padding: 18px 18px 22px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .site-main--single .single-share {
    padding: 14px 18px 2px;
  }

  .site-main--single .single-news__post-nav {
    grid-template-columns: 1fr;
    padding: 14px 18px 18px;
  }

  .site-main--single .single-news__post-nav-item--next a {
    text-align: left;
  }

  .site-main--single .single-news__entry .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-main--single .single-news__entry .wp-gallery-load-more {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 520px) {
  .site-main--single .single-news__entry .gallery {
    grid-template-columns: 1fr;
  }
}
