:root {
  --cream: #f7f1e7;
  --cream-deep: #eee4d5;
  --paper: #fffdf9;
  --ink: #20312d;
  --ink-soft: #52645f;
  --green: #385d52;
  --green-dark: #24473e;
  --sage: #d9e0d6;
  --terracotta: #c97555;
  --line: rgba(32, 49, 45, 0.14);
  --whatsapp: #237d5a;
  --shadow: 0 18px 46px rgba(44, 56, 47, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f4caaf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  color: #fffdf9;
  font-size: clamp(4rem, 8vw, 7rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

h1 em,
h2 em {
  color: var(--terracotta);
  font-weight: 400;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  transition: 180ms ease;
}

.site-header.scrolled {
  position: fixed;
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.95);
  box-shadow: 0 6px 30px rgba(26, 46, 38, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong i {
  color: var(--terracotta);
  font-size: 0.67em;
  font-weight: 500;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.76;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.main-nav a:not(.button) {
  transition: color 160ms ease;
}

.main-nav a:not(.button):hover {
  color: #eaa986;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.68rem;
}

.button-dark {
  background: var(--green-dark);
}

.site-header:not(.scrolled) .button-dark {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.button-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 12px 24px rgba(17, 96, 63, 0.22);
}

.button-whatsapp:hover {
  background: #196d4a;
  box-shadow: 0 16px 28px rgba(17, 96, 63, 0.28);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--terracotta);
  font-size: 1.15rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.light-link {
  color: #fff;
}

.light-link:hover span {
  transform: translateY(4px);
}

.hero {
  position: relative;
  display: flex;
  min-height: 850px;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 41, 36, 0.82) 0%, rgba(20, 41, 36, 0.57) 36%, rgba(20, 41, 36, 0.08) 76%),
    linear-gradient(0deg, rgba(20, 41, 36, 0.26), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 86px;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  min-width: 340px;
  align-items: center;
  gap: 16px;
  padding: 22px 38px 22px 28px;
  color: var(--green-dark);
  background: var(--cream);
  border-radius: 20px 0 0;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.hero-card small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.hero-card-icon {
  color: var(--terracotta);
  font-size: 2.2rem;
  line-height: 1;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.split-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 88px;
  align-items: end;
}

.lead {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.85;
}

.features {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 48px;
}

.split-heading > p,
.centered-heading > p {
  color: var(--ink-soft);
  line-height: 1.85;
}

.split-heading > p {
  max-width: 470px;
  margin-bottom: 4px;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.feature-photo-wrap {
  position: relative;
}

.feature-photo {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
}

.photo-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-width: 168px;
  padding: 18px 20px;
  border-radius: 15px;
  color: var(--green-dark);
  background: rgba(255, 253, 249, 0.91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.photo-note strong,
.photo-note span {
  display: block;
}

.photo-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.photo-note span {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.4);
}

.feature-item {
  padding: 28px 26px;
  border-bottom: 1px solid var(--line);
}

.feature-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.feature-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage);
}

.feature-icon svg,
.booking-location svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.feature-item h3 {
  margin-bottom: 7px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.feature-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.7;
}

.rates {
  background: var(--green-dark);
}

.centered-heading {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.rates h2,
.rates .centered-heading > p {
  color: #fffdf9;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.rate-card {
  position: relative;
  padding: 38px 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.8);
}

.featured-rate {
  color: var(--ink-soft);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 20px 40px rgba(7, 28, 22, 0.2);
}

.rate-badge {
  position: absolute;
  top: 0;
  right: 22px;
  padding: 7px 12px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: var(--terracotta);
  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rate-season {
  margin-bottom: 2px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.64rem;
}

.featured-rate .rate-season {
  color: var(--green-dark);
}

.rate-months {
  min-height: 44px;
  margin-bottom: 20px;
  font-size: 0.76rem;
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.rate-price span,
.rate-price small {
  font-size: 0.72rem;
}

.rate-price strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 1;
}

.featured-rate .rate-price strong {
  color: var(--green-dark);
}

.rate-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.featured-rate ul {
  border-color: var(--line);
}

.rate-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.78rem;
}

.rate-card li::before {
  position: absolute;
  left: 0;
  color: #e5a383;
  content: "✓";
  font-weight: 850;
}

.rates-note {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.74rem;
  text-align: center;
}

.gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 255px 255px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-main {
  grid-row: 1 / 3;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.045);
}

.gallery-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  color: #fff;
  background: rgba(24, 49, 41, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  backdrop-filter: blur(12px);
}

.conditions {
  background: var(--cream-deep);
}

.conditions-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}

.conditions-title h2 {
  margin-bottom: 24px;
}

.conditions-title p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.85;
}

.conditions-list {
  border-top: 1px solid var(--line);
}

.conditions-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.conditions-list span {
  padding-top: 2px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.conditions-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.conditions-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 500;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 84px;
}

.faq-intro p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 0;
  border: 0;
  color: var(--green-dark);
  background: transparent;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.23rem;
  text-align: left;
}

.accordion-item i {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.accordion-item i::before,
.accordion-item i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-item i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel p {
  max-width: 670px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.booking {
  color: #fff;
  background: var(--green-dark);
}

.booking-card {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 50px;
}

.booking-copy h2 {
  color: #fff;
  font-size: clamp(3.4rem, 5.5vw, 5rem);
}

.booking-copy > p:not(.eyebrow) {
  max-width: 440px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.booking-location {
  display: flex;
  align-items: center;
  gap: 13px;
}

.booking-location span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #f0b28f;
}

.booking-location p,
.booking-location strong {
  display: block;
  margin: 0;
}

.booking-location p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.booking-location strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
}

.booking-form {
  padding: 28px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 50px rgba(3, 22, 18, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label span {
  display: block;
  margin: 0 0 6px 4px;
  color: var(--green-dark);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink);
  outline: 0;
  background: #fbf9f5;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(201, 117, 85, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 20px;
}

.form-submit span {
  font-size: 1.1rem;
}

.form-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.site-footer {
  padding: 34px 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: #16362f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
}

.footer-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-phone {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--whatsapp);
  box-shadow: 0 12px 30px rgba(17, 96, 63, 0.28);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .section {
    padding: 84px 0;
  }

  .main-nav {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 20px 30px rgba(24, 49, 41, 0.11);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 11px 0;
  }

  .main-nav .button {
    margin-top: 8px;
    padding-inline: 18px;
  }

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: currentColor;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(20, 41, 36, 0.9), rgba(20, 41, 36, 0.36));
  }

  .intro-grid,
  .split-heading,
  .feature-layout,
  .conditions-grid,
  .faq-grid,
  .booking-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-photo {
    min-height: 470px;
  }

  .gallery-grid {
    grid-template-rows: 210px 210px;
  }

  .rate-grid {
    gap: 12px;
  }

  .rate-card {
    padding-inline: 18px;
  }

  .rate-price strong {
    font-size: 3rem;
  }

  .faq-grid {
    gap: 24px;
  }

  .booking-card {
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 30px, 520px);
  }

  .section {
    padding: 68px 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .brand strong {
    font-size: 1.2rem;
  }

  .brand small {
    font-size: 0.51rem;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
  }

  .hero {
    min-height: 740px;
    align-items: end;
  }

  .hero-content {
    padding-bottom: 112px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(20, 41, 36, 0.94), rgba(20, 41, 36, 0.2) 74%);
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    align-self: flex-start;
  }

  .hero-card {
    right: 15px;
    left: 15px;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 16px 16px 0 0;
  }

  .hero-card-icon {
    font-size: 1.7rem;
  }

  .hero-card strong {
    font-size: 1.05rem;
  }

  .feature-photo {
    min-height: 390px;
  }

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

  .feature-item {
    padding: 22px;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .feature-item:last-child {
    border-bottom: 0 !important;
  }

  .feature-icon {
    float: left;
    width: 44px;
    height: 44px;
    margin: 0 14px 0 0;
  }

  .feature-item h3 {
    padding-top: 1px;
  }

  .feature-item p {
    margin-left: 58px;
  }

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

  .rate-card {
    padding: 26px 23px 22px;
  }

  .rate-months {
    min-height: 0;
  }

  .rate-price {
    margin-bottom: 15px;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-grid figure {
    height: 250px;
    margin-bottom: 12px;
  }

  .gallery-grid figcaption {
    font-size: 1.06rem;
  }

  .conditions-grid {
    gap: 26px;
  }

  .conditions-list > div {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .faq-grid {
    gap: 14px;
  }

  .accordion-item button {
    font-size: 1.08rem;
  }

  .booking-form {
    padding: 20px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-submit {
    padding-inline: 12px;
    font-size: 0.67rem;
  }

  .footer-grid,
  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom {
    gap: 4px;
    margin-top: 20px;
  }

  .floating-whatsapp {
    display: flex;
  }
}
