.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

iframe.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

#goog-gt-tt,
.goog-te-balloon-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

/* =================================
RESET
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #f3eee5;
  color: #222;
  line-height: 1.5;
}


.page-fit {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-fit .hero,
.page-fit .houses-hero {
  flex: 1;
  min-height: 0;
  height: auto;
}

/* =================================
TYPOGRAPHY
================================= */

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

p,
a,
li,
span {
  font-family: "Inter", sans-serif;
}

/* =================================
HEADER
================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;

  align-items: center;

  padding: 0 40px;

  z-index: 9999;

  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* LOGO */

.logo {
  height: 75px;
  width: auto;

  filter: brightness(0) invert(1);

  justify-self: start;
}

/* =================================
LANGUAGE FLAGS
================================= */

.language-switch {
  display: flex;
  gap: 12px;

  justify-content: center;
  align-items: center;

  height: 100%;
}

.language-flag {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.language-switch img {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  transition: 0.25s;

  opacity: 0.9;
}

.language-switch img:hover,
.language-flag:focus-visible img {
  transform: scale(1.15);
  opacity: 1;
}

/* =================================
HAMBURGER
================================= */

.hamburger {
  width: 28px;
  height: 20px;

  position: relative;

  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 2px;
  margin-left: -14px;
  margin-top: -1px;

  background: white;

  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hamburger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 5px;
}

.hamburger span:nth-child(1) {
  transform: translateY(-9px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(9px);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    grid-template-columns: auto 1fr auto;
  }

  .header-center {
    min-width: 0;
    pointer-events: none;
  }

  .header-center .language-switch,
  .header-center .language-switch * {
    pointer-events: auto;
  }

  .header-right {
    position: relative;
    z-index: 3;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 4;
  }
}

/* =================================
MENU PANEL
================================= */

.menu {
  position: fixed;

  top: 0;
  right: -420px;

  width: 420px;
  height: 100vh;
  height: 100dvh;

  background: #0b0b0b;

  display: flex;
  flex-direction: column;

  padding: 120px 60px;

  gap: 35px;

  transition: 0.45s cubic-bezier(0.77, 0, 0.18, 1);

  z-index: 5000;
}

.menu.active {
  right: 0;
}

.menu a {
  color: white;
  text-decoration: none;

  font-size: 26px;

  font-family: "Playfair Display", serif;

  opacity: 0.85;

  transition: 0.25s;
}

.menu a:hover {
  opacity: 1;
  transform: translateX(8px);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  pointer-events: none;

  transition: 0.35s;

  z-index: 4000;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* =================================
LANDING HERO
================================= */

.hero {
  position: relative;

  min-height: 100vh;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  background: url("../images/landing.png") center/cover no-repeat;

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);

  z-index: 1;
}

.center-block {
  margin-top: 40px;

  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 30px;

  text-align: center;
}

.center-block h1 {
  text-align: center;
  font-size: 42px;

  color: white;

  margin-top: 20px;
  margin-bottom: 30px;

  font-size: 48px;
}


/* =================================
SN HOUSES HERO
================================= */

.houses-hero {
  background: url("../images/snhouses.png") center/cover no-repeat;
  padding-top: 104px;
  padding-bottom: 24px;

  height: calc(100vh - 72px);
  overflow: hidden;
}

.snhouses-page .center-block {
  margin-top: 0;
  gap: 20px;
}

.snhouses-page .center-block h1 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* =================================
CASA DO CANAL HERO
================================= */

.hero-canal {
  height: 100vh;

  background: url("../images/landingcasadocanal.png") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  position: relative;
}

.hero-canal::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.6) 100%
  );

  backdrop-filter: blur(6px);
}

.hero-content {
  position: relative;
  z-index: 2;

  color: white;
}

.hero-content h1 {
  font-size: 64px;
}

.hero-content p {
  margin-top: 10px;
  font-size: 20px;
  opacity: 0.9;
}

/* SN HOUSES OUTLINE BUTTON */

.sn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 42px;

  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;

  background: transparent;

  transition: all 0.3s ease;
}

.sn-button img {
  height: 40px;
  width: auto;

  filter: brightness(0) invert(1);
}

.sn-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;

  transform: scale(1.05);
}


.business-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.under-construction {
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.01em;
}

/* =================================
BUTTONS
================================= */
.houses-hero {
  background: url("../images/snhouses.png") center/cover no-repeat;

  padding-top: 104px;
  padding-bottom: 24px;
}

.houses-button img {
  width: 200px;

  filter: brightness(0) invert(1);

  transition: 0.3s;
}

.houses-button img:hover {
  transform: scale(1.05);
}

.house-button img {
  width: 150px;
  height: 150px;

  border-radius: 50%;

  object-fit: cover;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

  transition: 0.3s;
}

.house-button img:hover {
  transform: scale(1.06);
}

.house-card {
  display: block;
  width: 240px;
  margin: 16px auto;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);

  border-radius: 18px;
  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.house-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.houses-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: -8px;
  flex-wrap: wrap;
}

.house-info {
  padding: 14px;
}

.house-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.house-info p {
  font-size: 14px;
  color: #666;
}

.house-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.22);
}

.house-card.tba img {
  width: 70px;
  height: 70px;

  object-fit: contain;

  margin: 40px auto;

  display: block;
}
/* =================================
EMAIL
================================= */

.email-contact {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(10px);

  text-decoration: none;

  transition: 0.25s;
}

.email-contact img {
  width: 26px;
  filter: brightness(0) invert(1);
}

.email-contact:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-5px);
}

/* =================================
GALLERY (AIRBNB STYLE)
================================= */

.gallery {
  padding: 80px 20px;

  max-width: 1200px;
  margin: auto;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 250px 250px;

  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 14px;

  transition: 0.5s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-grid img:first-child {
  grid-row: 1 / span 2;
}

.gallery-mobile {
  display: none;
}

.gallery-mobile-viewer {
  position: relative;
  min-height: 230px;
}

.gallery-mobile-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-dot.active {
  background: #222;
  transform: scale(1.15);
}

.gallery-mobile-image {
  display: none;
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-mobile-image.active {
  display: block;
}


/* =================================
INFO COLUMNS
================================= */

.info-columns {
  padding: 100px 20px;

  max-width: 1100px;
  margin: auto;

  text-align: center;
}

.info-columns h2 {
  font-size: 38px;

  margin-bottom: 60px;
}

.columns {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 60px;
}

.column h3 {
  font-size: 22px;

  margin-bottom: 20px;
}

.column ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 12px;
}

.column a {
  text-decoration: none;

  color: #444;

  font-size: 16px;

  transition: 0.25s;
}

.column a:hover {
  color: #000;

  transform: translateX(4px);
}

/* =================================
MAP (GLASS EFFECT)
================================= */

.location {
  padding: 100px 20px;

  text-align: center;
}

.location h2 {
  margin-bottom: 40px;
  scroll-margin-top: 110px;
}

.map {
  height: 420px;

  max-width: 900px;
  margin: auto;

  border-radius: 20px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.25);

  backdrop-filter: blur(12px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =================================
WEATHER
================================= */

.weather {
  padding: 120px 20px 200px 20px;

  text-align: center;
}

.weather-box {
  max-width: 420px;
  margin: auto;

  padding: 40px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(12px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.weather-temp {
  font-size: 56px;

  margin-bottom: 10px;
}

.weather-condition {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #2f5250;
  font-size: 15px;
  font-weight: 600;
}

.weather-condition i {
  font-size: 18px;
}

.weather-location {
  font-size: 16px;

  opacity: 0.7;

  margin-bottom: 30px;
}

.weather-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.weather-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weather-item i {
  font-size: 26px;

  margin-bottom: 6px;

  opacity: 0.8;
}

.weather-label {
  font-size: 12px;

  opacity: 0.6;

  margin-top: 5px;
}

/* =================================
SOCIAL FLOATING ICONS
================================= */

.social {
  position: fixed;

  bottom: 96px;
  left: 50%;

  transform: translateX(-50%);

  display: flex;
  gap: 26px;

  z-index: 999;
}

.social a {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(10px);

  text-decoration: none;

  transition: 0.25s;
}

.social a i {
  font-size: 28px;
  color: white;
}

.social a img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.social a:hover {
  background: rgba(0, 0, 0, 0.7);

  transform: translateY(-5px);
}

/* =================================
SCROLL REVEAL
================================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);

  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =================================
FOOTER
================================= */

.site-footer {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(8px);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 60px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-content p {
  font-size: 14px;
  opacity: 0.92;
  letter-spacing: 0.2px;
  margin: 0;
}

.footer-logo {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* =================================
RESPONSIVE
================================= */

@media (max-width: 900px) {
  .columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .page-fit .houses-hero {
    height: auto;
    min-height: calc(100vh - 64px);
    overflow: visible;
  }

  .footer-content {
    min-height: 64px;
    padding: 10px 14px;
    gap: 10px;
  }

  .footer-content p {
    font-size: 12px;
  }

  .footer-logo {
    height: 24px;
  }

  .houses-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 0;
  }

  .houses-hero {
    height: auto;
    min-height: calc(100vh - 64px);
    overflow: visible;
    padding-top: 108px;
    padding-bottom: 20px;
  }

  .house-card {
    width: 85%;
    max-width: 300px;
    margin: 10px auto;
  }
  .houses-hero h1 {
    margin-bottom: 26px;
    letter-spacing: 0.3px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    padding-top: 140px;
    padding-bottom: 80px;

    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .email-contact {
    margin-top: 10px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .gallery-grid {
    display: none;
  }

  .gallery-mobile {
    display: block;
  }

  .center-block {
    margin-top: 10px;
    gap: 25px;
  }


  .center-block h1 {
    margin-top: 0;
    margin-bottom: 20px;
  }


  .header {
    grid-template-columns: auto 1fr auto;
    height: 76px;
    padding: 0 16px;
  }

  .logo {
    height: 54px;
  }

  .language-switch {
    gap: 8px;
  }

  .language-switch img {
    width: 22px;
    height: 22px;
  }

  .menu {
    width: min(86vw, 320px);
    right: calc(-1 * min(86vw, 320px));
    padding: 100px 28px;
    gap: 22px;
  }

  .menu a {
    font-size: 22px;
  }

  .weather {
    padding-bottom: 140px;
  }

  .social {
    bottom: 88px;
  }
}

/* =================================
CARDS
================================= */

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card h4 {
  font-size: 18px;
  margin: 0;
  color: #222;
  font-weight: 600;
}

.ver-mais-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
  display: block;
  margin: 20px auto 0 auto;
  font-family: "Inter", sans-serif;
}

.ver-mais-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-5px);
}

/* =================================
MODALS
================================= */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10000;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 12px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  display: none;
  z-index: 10001;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content {
  padding: 30px;
  position: relative;
}

.modal-image {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

.modal h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.modal p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #555;
}

.modal-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.modal-button:hover {
  background: #0056b3;
}

/* =================================
CASA DO CANAL PAGE
================================= */

.canal-page {
  --canal-ink: #1f2e2f;
  --canal-deep: #284a4d;
  --canal-night: #13262c;
  --canal-sand: #eee7dc;
  --canal-cream: #f8f3eb;
  --canal-sky: #f4efe7;
  --canal-accent: #bd8043;
  --canal-line: rgba(31, 46, 47, 0.12);
  --canal-card: rgba(250, 246, 239, 0.9);
  --canal-shell-radius: 40px;
  --canal-panel-radius: 32px;
  --canal-card-radius: 28px;
  --canal-shadow: 0 24px 60px rgba(27, 43, 42, 0.12);
  background: #f3eee5;
  color: var(--canal-ink);
}

.canal-page main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  padding-top: 36px;
}

.canal-page main section[id],
.canal-page .weather[id] {
  scroll-margin-top: 130px;
}

.section-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 28px;
  border-radius: var(--canal-shell-radius);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 48px rgba(31, 46, 47, 0.06);
}

.intro-section,
.layout-section,
.property-gallery,
.guide-section {
  background: linear-gradient(180deg, rgba(249, 244, 236, 0.96), rgba(247, 241, 232, 0.92));
}

.highlights-section,
.amenities-section,
.location-section,
.notes-section,
.faq-section,
.canal-page .weather {
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.96), rgba(242, 235, 226, 0.92));
}

.sky-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.reserve-section {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 0 120px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.intro-copy h2,
.reserve-card h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.section-heading p,
.intro-copy p,
.reserve-card p,
.highlight-card p,
.layout-card p,
.amenity-card p,
.distance-card p,
.guide-card p,
.note-card p,
.faq-item p {
  color: rgba(31, 46, 47, 0.82);
  line-height: 1.72;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 24px rgba(31, 46, 47, 0.08);
  color: var(--canal-deep);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-badge-dark {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: #fff;
}

.section-intro {
  margin-top: 14px;
  max-width: 680px;
}

.canal-page .hero-canal {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: 120px 24px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background:
    linear-gradient(115deg, rgba(8, 18, 19, 0.66), rgba(20, 38, 40, 0.44)),
    url("../images/landingcasadocanal.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.canal-page .hero-canal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 201, 149, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(10, 22, 24, 0.12), rgba(10, 22, 24, 0.38));
  backdrop-filter: blur(2px);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: start;
  text-align: left;
}

.hero-copy,
.hero-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: var(--canal-panel-radius);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(11, 22, 24, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(5, 12, 13, 0.2);
  color: #fff;
}

.hero-copy .section-badge {
  background: rgba(11, 22, 24, 0.72);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  color: #fff;
}

.hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(42px, 5.8vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.028em;
}

.hero-promise {
  max-width: 16ch;
  margin-top: 8px;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
}

.hero-lead {
  max-width: 40ch;
  margin-top: 10px;
  font-size: clamp(14px, 1.08vw, 16px);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.9);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  max-width: 560px;
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11.5px;
  font-weight: 500;
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  overflow-wrap: anywhere;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.primary-action {
  background: linear-gradient(135deg, #d69958, #bd8043);
  color: #fff;
  box-shadow: 0 16px 30px rgba(189, 128, 67, 0.28);
}

.secondary-action {
  border: 1px solid rgba(31, 46, 47, 0.16);
  background: rgba(255, 252, 247, 0.9);
  color: var(--canal-ink);
}

.hero-copy .secondary-action {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
}

.hero-panel-kicker,
.layout-label,
.guide-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin-top: 12px;
  max-width: 12ch;
  font-size: clamp(26px, 2.4vw, 31px);
  line-height: 1.12;
  letter-spacing: -0.012em;
}

.hero-panel-list {
  margin-top: 14px;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.42;
}

.hero-panel-list li {
  max-width: 28ch;
}

.hero-panel-list li + li {
  margin-top: 8px;
}

.intro-section,
.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
}

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

.intro-side,
.layout-grid,
.highlights-grid,
.amenities-grid,
.distance-grid {
  display: grid;
  gap: 18px;
}

.intro-side {
  align-content: start;
}

.info-panel,
.highlight-card,
.layout-card,
.amenity-card,
.distance-card,
.note-card,
.reserve-card,
.map-card,
.guide-group,
.faq-item {
  background: var(--canal-card);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--canal-shadow);
}

.info-panel,
.highlight-card,
.layout-card,
.amenity-card,
.distance-card,
.note-card,
.guide-group,
.reserve-card {
  border-radius: var(--canal-card-radius);
  padding: 26px;
}

.muted-panel {
  background: rgba(244, 238, 229, 0.94);
}

.info-panel ul,
.hero-panel-list {
  line-height: 1.7;
}

.sky-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--canal-panel-radius);
  padding: 34px;
  background: linear-gradient(135deg, rgba(19, 38, 44, 0.98), rgba(34, 60, 64, 0.94));
  box-shadow: var(--canal-shadow);
  color: #fff;
}

.sky-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(213, 167, 105, 0.24), transparent 30%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 18%);
  pointer-events: none;
}

.sky-copy,
.sky-points,
.section-cta {
  position: relative;
  z-index: 1;
}

.sky-copy {
  max-width: 760px;
}

.sky-copy h2 {
  margin-top: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.sky-copy p:last-child {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.sky-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.sky-feature {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sky-feature h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sky-feature p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.section-cta-note {
  color: rgba(255, 255, 255, 0.76);
}

.highlights-grid,
.layout-grid,
.amenities-grid,
.distance-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-card i,
.amenity-card i {
  font-size: 26px;
  color: var(--canal-accent);
}

.highlight-card h3,
.layout-card h3,
.amenity-card h3,
.distance-card h3,
.guide-card h4,
.note-card h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.info-panel h3,
.guide-group-head h3,
.faq-item summary {
  letter-spacing: -0.01em;
}

.layout-label,
.guide-tag {
  color: var(--canal-deep);
}

.property-gallery .section-heading,
.amenities-section .section-heading,
.guide-section .section-heading,
.faq-section .section-heading,
.notes-section .section-heading {
  margin-bottom: 28px;
}

.gallery-story {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #d8d8d8;
  box-shadow: var(--canal-shadow);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-frame:hover img {
  transform: scale(1.04);
}

.gallery-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(12, 23, 24, 0.64);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.gallery-frame-large {
  grid-row: span 2;
}

.map-card {
  border-radius: var(--canal-panel-radius);
  overflow: hidden;
  min-height: 520px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.guide-groups,
.notes-grid,
.faq-list {
  display: grid;
  gap: 20px;
}

.guide-group-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.guide-group-head i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(189, 128, 67, 0.14);
  color: var(--canal-accent);
  font-size: 22px;
  flex-shrink: 0;
}

.guide-group-head p {
  margin-top: 6px;
  color: rgba(31, 46, 47, 0.72);
}

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

.guide-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background: rgba(249, 244, 236, 0.96);
  border: 1px solid rgba(31, 46, 47, 0.08);
}

.guide-card h4 {
  margin-top: 10px;
}

.guide-card p:last-child {
  margin-top: 12px;
}

.guide-group .ver-mais-btn {
  margin: 18px 0 0;
  background: rgba(40, 74, 77, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.guide-group .ver-mais-btn:hover {
  background: rgba(31, 46, 47, 0.96);
}

.mobile-essential-hide {
  display: block;
}

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

.faq-list {
  max-width: 980px;
}

.faq-item {
  border-radius: var(--canal-card-radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-size: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  overflow-wrap: anywhere;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: "Inter", sans-serif;
  font-size: 26px;
  line-height: 1;
  color: var(--canal-accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 26px 22px;
}

.canal-page .weather {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 28px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 48px rgba(31, 46, 47, 0.06);
}

.weather-heading {
  text-align: center;
  margin: 0 auto 28px;
}

.canal-page .weather-box {
  max-width: 520px;
  background: rgba(250, 246, 239, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--canal-shadow);
}

.reserve-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(19, 38, 44, 0.98), rgba(40, 74, 77, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.reserve-card p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.reserve-card .section-badge {
  margin-bottom: 8px;
}

.reserve-note {
  max-width: 640px;
}

.reserve-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.reserve-checklist span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.reserve-actions {
  justify-content: center;
}

.reserve-card .secondary-action {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.canal-page .social {
  left: auto;
  right: 24px;
  bottom: 24px;
  transform: none;
  flex-direction: column;
  gap: 12px;
}

.canal-page .social a {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(15, 29, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(8, 17, 18, 0.2);
}

.canal-page .social a:last-child {
  background: linear-gradient(135deg, #d69958, #bd8043);
}

.canal-page .social a:hover {
  transform: translateY(-4px);
}

@media (max-width: 1100px) {
  .hero-shell,
  .intro-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .sky-points,
  .guide-cards,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-card {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .sky-points,
  .highlights-grid,
  .layout-grid,
  .amenities-grid,
  .distance-grid,
  .gallery-story {
    grid-template-columns: 1fr;
  }

  .gallery-story {
    grid-auto-rows: 280px;
  }

  .gallery-frame-large {
    grid-row: auto;
  }

}

@media (max-width: 768px) {
  .canal-page main {
    gap: 18px;
    padding-top: 24px;
  }

  .section-shell,
  .canal-page .weather {
    width: calc(100% - 24px);
    padding: 60px 16px;
    border-radius: 28px;
  }

  .canal-page .hero-canal {
    min-height: auto;
    padding: 118px 16px 34px;
  }

  .sky-section {
    padding: 0;
    border-radius: 0;
  }

  .reserve-section {
    padding: 0 0 118px;
    border-radius: 0;
  }

  .hero-shell {
    gap: 18px;
    align-items: stretch;
    max-width: 560px;
  }

  .hero-copy,
  .hero-panel,
  .info-panel,
  .highlight-card,
  .layout-card,
  .amenity-card,
  .distance-card,
  .note-card,
  .sky-card,
  .guide-group,
  .reserve-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-copy,
  .hero-panel {
    text-align: left;
  }

  .hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: 1;
  }

  .hero-promise {
    max-width: none;
    font-size: clamp(19px, 5.8vw, 24px);
    line-height: 1.24;
  }

  .hero-lead {
    max-width: none;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .hero-facts .fact-chip:nth-child(n + 4) {
    display: none;
  }

  .fact-chip {
    width: 100%;
    min-height: 64px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 20px;
    text-align: left;
    line-height: 1.35;
    white-space: normal;
  }

  .fact-chip i {
    flex-shrink: 0;
    font-size: 15px;
    margin-top: 2px;
  }

  .hero-actions,
  .reserve-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
    margin-top: 16px;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action,
  .reserve-actions .primary-action,
  .reserve-actions .secondary-action {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
  }

  .hero-panel h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero-panel-list {
    margin-top: 14px;
    padding-left: 20px;
  }

  .hero-panel-list li:nth-child(n + 4) {
    display: none;
  }

  .hero-panel-list li + li {
    margin-top: 8px;
  }

  .section-badge {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .guide-cards,
  .sky-points,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .mobile-essential-hide,
  .mobile-essential-hide-section {
    display: none !important;
  }

  .map-card {
    min-height: 280px;
  }

  .section-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .section-cta .primary-action {
    width: 100%;
  }

  .section-cta-note {
    text-align: left;
  }

  .reserve-checklist {
    justify-content: flex-start;
  }

  .guide-group .ver-mais-btn {
    width: 100%;
    margin-top: 14px;
  }

  .faq-item summary {
    padding: 18px 20px;
    font-size: 18px;
  }

  .faq-item p {
    padding: 0 20px 18px;
  }

  .canal-page .weather {
    padding-bottom: 110px;
  }

  .canal-page .social {
    left: 50%;
    right: auto;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    transform: translateX(-50%);
    flex-direction: row;
    gap: 8px;
    padding: 8px 10px;
    max-width: calc(100vw - 24px);
    border-radius: 999px;
    background: rgba(15, 29, 31, 0.52);
    backdrop-filter: blur(14px);
  }

  .canal-page .social a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .canal-page .social a i {
    font-size: 22px;
  }

  .canal-page .site-footer {
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 72px);
  }
}

@media (max-width: 560px) {
  .header {
    height: 72px;
    padding: 0 12px;
  }

  .logo {
    height: 46px;
  }

  .language-switch {
    gap: 6px;
  }

  .language-switch img {
    width: 20px;
    height: 20px;
  }

  .menu {
    width: min(92vw, 320px);
    right: calc(-1 * min(92vw, 320px));
    padding: 92px 22px 28px;
  }

  .menu a {
    font-size: 20px;
  }

  .section-shell,
  .canal-page .weather {
    width: calc(100% - 16px);
    padding: 48px 14px;
    border-radius: 24px;
  }

  .canal-page .hero-canal {
    padding: 106px 12px 28px;
  }

  .hero-copy,
  .hero-panel,
  .info-panel,
  .highlight-card,
  .layout-card,
  .amenity-card,
  .distance-card,
  .note-card,
  .sky-card,
  .guide-group,
  .reserve-card {
    padding: 18px;
    border-radius: 22px;
  }

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

  .section-heading h2,
  .intro-copy h2,
  .reserve-card h2 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .hero-copy h1 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero-promise {
    font-size: clamp(17px, 6vw, 21px);
  }

  .hero-facts,
  .canal-page .weather-grid {
    grid-template-columns: 1fr;
  }

  .reserve-checklist {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fact-chip {
    min-height: 0;
  }

  .gallery-story {
    grid-auto-rows: 220px;
  }

  .gallery-frame figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .guide-group-head {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .guide-group-head i {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .canal-page .weather-box {
    padding: 28px 18px;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 17px;
  }

  .faq-item p {
    padding: 0 18px 16px;
  }

  .reserve-checklist span {
    width: 100%;
    text-align: center;
  }

  .canal-page .social {
    gap: 6px;
    padding: 8px;
    max-width: calc(100vw - 16px);
  }

  .canal-page .social a {
    width: 42px;
    height: 42px;
  }

  .canal-page .social a i {
    font-size: 20px;
  }
}
