/* ═══════════════════════════════════════════
   NOSSO APÊ — Design System
   Baseado no Brand Book "Nosso Apê"
   ═══════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  /* Família Oceano Tropical */
  --azul-abissal: #1A3B47;
  --turquesa-cristal: #40A4A8;
  --brisa: #A2D2D4;

  /* Família Floresta Tropical */
  --verde-profundo: #1E392A;
  --verde-mata: #2B5F45;
  --clorofila: #5BAF8A;

  /* Família Areia e Terra */
  --duna: #D9C5B2;
  --argila: #8C6D51;
  --sisal: #F2E8DF;

  /* Acento verde (alias) */
  --verde-claro: #5BAF8A;

  /* Família Neutros */
  --off-white: #F9F9F7;
  --linho: #E5E2DC;
  --dark-coal: #2D2D2D;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Espaçamento */
  --section-padding: 100px;
  --section-padding-mobile: 56px;
  --container-max: 1200px;
  --gutter: 28px;

  /* Bordas */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-full: 100px;

  /* Sombras */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-elevated: 0 16px 60px rgba(0, 0, 0, 0.10);

  /* Transições */
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --dur: 0.6s;
  --dur-fast: 0.3s;

  /* WhatsApp */
  --wpp: #25D366;
  --wpp-dark: #128C7E;

  /* Airbnb */
  --airbnb: #FF5A5F;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--dark-coal);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

a {
  color: var(--turquesa-cristal);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

a:hover {
  color: var(--azul-abissal);
}

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

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

/* ══════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--azul-abissal);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--verde-profundo);
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  line-height: 1.75;
  color: var(--dark-coal);
  font-size: 0.9rem;
}

em {
  font-style: italic;
  color: var(--verde-mata);
}

/* ── EYEBROW / OVERLINE ── */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--turquesa-cristal);
  flex-shrink: 0;
}

.eyebrow.light {
  color: var(--brisa);
}

.eyebrow.light::before {
  background: var(--brisa);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  color: var(--azul-abissal);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-title em {
  color: var(--verde-mata);
}

.section-title.on-dark {
  color: var(--off-white);
}

.section-title.on-dark em {
  color: var(--clorofila);
}

.section-sub {
  font-size: 0.88rem;
  color: var(--argila);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section-sub.on-dark {
  color: var(--brisa);
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  border: none;
  text-decoration: none;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--azul-abissal);
  color: var(--off-white);
}

.btn-primary:hover {
  background: var(--turquesa-cristal);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-wpp {
  background: var(--wpp);
  color: white;
}

.btn-wpp:hover {
  background: var(--wpp-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: white;
  color: var(--azul-abissal);
  transform: translateY(-2px);
}

.btn-airbnb {
  background: var(--airbnb);
  color: white;
}

.btn-airbnb:hover {
  background: #e04e52;
  color: white;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 249, 247, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--linho);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  max-width: 100%;
}

nav.scrolled {
  background: rgba(249, 249, 247, 0.96);
  box-shadow: var(--shadow-soft);
}

/* Progress Bar */
.nav-progress-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
}

.nav-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--turquesa-cristal), var(--clorofila));
  border-radius: 0 2px 2px 0;
  transition: width 0.15s linear;
  will-change: width;
  box-shadow: 0 0 8px rgba(64, 164, 168, 0.35);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--azul-abissal);
  line-height: 1.2;
}

.nav-logo-name em {
  color: var(--verde-mata);
  font-style: italic;
}

.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--argila);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--azul-abissal);
  position: relative;
  text-decoration: none;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--turquesa-cristal);
  transition: width var(--dur-fast) var(--ease);
}

.nav-links a:hover {
  color: var(--turquesa-cristal);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--turquesa-cristal);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-reserve {
  display: flex;
  align-items: center;
}

.nav-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.2rem;
  background: var(--wpp);
  color: white !important;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.nav-wpp-btn svg {
  width: 14px;
  height: 14px;
}

.nav-wpp-btn:hover {
  background: var(--wpp-dark);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--azul-abissal);
  border-radius: 2px;
  transition: all var(--dur-fast) var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: var(--azul-abissal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--off-white);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur) var(--ease);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.10s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.20s;
}

.mobile-menu a:hover {
  color: var(--turquesa-cristal);
}

.mm-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--off-white);
  cursor: pointer;
  padding: 8px;
  transition: color var(--dur-fast);
}

.mm-close:hover {
  color: var(--turquesa-cristal);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-reserve {
    display: none;
  }

  .nav-burger {
    display: flex;
  }
}

/* ══════════════════════════════════════
   HOME: HERO
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('Imagens/Mar/mar-4.webp') center/cover no-repeat;
  filter: brightness(0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px clamp(40px, 7vw, 120px) 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brisa);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--brisa);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 500;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.5s var(--ease) both;
}

.hero-title em {
  color: var(--clorofila);
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.8s 0.7s var(--ease) both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.9s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: fadeUp 0.8s 1.2s var(--ease) both;
}

.hero-scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--duna);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: var(--duna);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 1px;
  height: 36px;
  background: var(--turquesa-cristal);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% {
    top: -36px;
  }

  100% {
    top: 36px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════════
   HOME: STATS STRIP
   ══════════════════════════════════════ */
.stats-strip {
  background: var(--azul-abissal);
  padding: 28px 0;
  overflow-x: auto;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  min-width: max-content;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.stat-icon {
  width: 22px;
  height: 22px;
  stroke: var(--turquesa-cristal);
  flex-shrink: 0;
}

.stat-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.68rem;
  color: var(--brisa);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .stats-grid {
    justify-content: flex-start;
    gap: 28px;
    padding: 0 var(--gutter);
  }
}

/* ══════════════════════════════════════
   HOME: SOBRE O APÊ
   ══════════════════════════════════════ */
.sobre {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-text .eyebrow {
  margin-bottom: 14px;
}

.sobre-body p {
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--argila);
  line-height: 1.75;
}

.sobre-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--linho);
}

.sh-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sh-icon {
  width: 22px;
  height: 22px;
  stroke: var(--turquesa-cristal);
  flex-shrink: 0;
  margin-top: 2px;
}

.sh-text {
  font-size: 0.82rem;
  color: var(--argila);
  line-height: 1.5;
}

.sh-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 2px;
}

.sobre-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sobre-photos .sobre-photo:first-child {
  grid-column: 1 / -1;
}

.sobre-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sobre-photo:hover img {
  transform: scale(1.03);
}

.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease);
}

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

/* ══════════════════════════════════════
   HOME: CONDOMÍNIO (dark section)
   ══════════════════════════════════════ */
.condo {
  padding: var(--section-padding) 0;
  background: var(--azul-abissal);
  position: relative;
  overflow: hidden;
}

.condo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(91, 175, 138, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(64, 164, 168, 0.06), transparent);
  pointer-events: none;
}

.condo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.condo-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.condo-photos .condo-photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  max-height: 340px;
  overflow: hidden;
}

.condo-photos .condo-photo:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.condo-photo {
  overflow: hidden;
  border-radius: var(--radius);
}

.condo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--dur) var(--ease);
}

.condo-photo:hover img {
  transform: scale(1.03);
}

.condo-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.cf-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast);
}

.cf-item:hover {
  background: rgba(255, 255, 255, 0.07);
}

.cf-icon {
  width: 22px;
  height: 22px;
  stroke: var(--clorofila);
  flex-shrink: 0;
  margin-top: 2px;
}

.cf-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 2px;
}

.cf-desc {
  font-size: 0.78rem;
  color: var(--brisa);
}

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

/* ══════════════════════════════════════
   HOME: LOCALIZAÇÃO
   ══════════════════════════════════════ */
.localizacao {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.loc-distances {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.ld-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast) var(--ease);
}

.ld-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.ld-icon {
  width: 20px;
  height: 20px;
  stroke: var(--turquesa-cristal);
}

.ld-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark-coal);
}

.ld-dist {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--azul-abissal);
  text-align: right;
  line-height: 1;
}

.ld-unit {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--argila);
  display: block;
  margin-top: 2px;
}

.loc-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.loc-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.loc-note {
  margin-top: 20px;
  padding: 20px;
  background: var(--sisal);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--argila);
  line-height: 1.7;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

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

/* ══════════════════════════════════════
   HOME: CTA SECTION
   ══════════════════════════════════════ */
.home-cta {
  padding: var(--section-padding) 0;
  background: var(--sisal);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(64, 164, 168, 0.06), transparent);
  pointer-events: none;
}

.home-cta .container {
  position: relative;
}

.home-cta .eyebrow {
  justify-content: center;
  color: var(--turquesa-cristal);
}

.home-cta .eyebrow::before {
  display: none;
}

.home-cta .section-title {
  color: var(--azul-abissal);
}

.home-cta .section-title em {
  color: var(--verde-mata);
}

.home-cta-sub {
  font-size: 0.92rem;
  color: var(--argila);
  margin-bottom: 36px;
}

.home-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   O APÊ: HEADER
   ══════════════════════════════════════ */
.ape-header {
  background: var(--azul-abissal);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.ape-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(91, 175, 138, 0.1), transparent),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(64, 164, 168, 0.06), transparent);
  pointer-events: none;
}

.ape-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.ape-header-title {
  color: var(--off-white);
  margin-bottom: 12px;
}

.ape-header-title em {
  color: var(--clorofila);
}

.ape-header-sub {
  font-size: 0.9rem;
  color: var(--brisa);
  margin-bottom: 36px;
}

/* Check-in bar */
.ape-checkin-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.acb-item {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  transition: background var(--dur-fast);
}

.acb-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.acb-item.accent {
  border-left: 3px solid var(--clorofila);
}

.acb-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brisa);
  margin-bottom: 6px;
}

.acb-val {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.2;
}

.acb-sub {
  font-size: 0.72rem;
  color: var(--brisa);
  margin-top: 4px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .ape-checkin-bar {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════
   O APÊ: QUARTOS
   ══════════════════════════════════════ */
.quartos {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.quartos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.quarto-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linho);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast);
}

.quarto-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.qc-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0;
}

.qc-body {
  padding: 28px;
}

.qc-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 8px;
}

.qc-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 10px;
}

.qc-desc {
  font-size: 0.82rem;
  color: var(--argila);
  line-height: 1.7;
  margin-bottom: 16px;
}

.qc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.qc-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--verde-mata);
  background: rgba(91, 175, 138, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(91, 175, 138, 0.15);
}

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

/* ══════════════════════════════════════
   O APÊ: COMODIDADES
   ══════════════════════════════════════ */
.comodidades {
  padding: var(--section-padding) 0;
  background: var(--sisal);
}

.como-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.como-cat {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--linho);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.cc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--linho);
}

.cc-icon {
  width: 24px;
  height: 24px;
  stroke: var(--turquesa-cristal);
}

.cc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul-abissal);
}

.cc-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--dark-coal);
}

.cc-item-icon {
  width: 16px;
  height: 16px;
  stroke: var(--clorofila);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   O APÊ: WI-FI
   ══════════════════════════════════════ */
.wifi-section {
  padding: 0 0 80px;
  background: var(--sisal);
}

.wifi-card {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.wifi-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(64, 164, 168, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wifi-icon {
  width: 28px;
  height: 28px;
  stroke: var(--turquesa-cristal);
}

.wifi-info {
  flex: 1;
}

.wifi-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 4px;
}

.wifi-title em {
  color: var(--verde-mata);
}

.wifi-sub {
  font-size: 0.82rem;
  color: var(--argila);
}

.wifi-creds {
  display: flex;
  gap: 24px;
}

.wc-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 4px;
}

.wc-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-abissal);
}

@media (max-width: 768px) {
  .wifi-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .wifi-creds {
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   O APÊ: REGRAS
   ══════════════════════════════════════ */
.regras {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.regras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.rg-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 20px;
}

.rg-icon {
  width: 22px;
  height: 22px;
}

.regra-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.regra-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--dark-coal);
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-sm);
}

.ri {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ri.yes {
  stroke: var(--clorofila);
}

.ri.no {
  stroke: var(--airbnb);
}

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

/* ══════════════════════════════════════
   LOLO LOFT: GALERIA + CTA
   ══════════════════════════════════════ */

/* Galeria principal (hero image + grid lateral) */
.loft-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.loft-gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.loft-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.loft-gallery-grid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Faixa de fotos adicionais */
.loft-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.loft-gallery-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .loft-gallery {
    grid-template-columns: 1fr;
  }

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

  .loft-gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .loft-gallery-strip img:last-child {
    display: none;
  }
}

/* CTA de reserva Airbnb */
.loft-cta {
  margin-top: 56px;
  padding: 40px;
  background: var(--sisal);
  border-radius: var(--radius);
  border: 1px solid var(--linho);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.loft-cta-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--argila);
  line-height: 1.7;
  min-width: 200px;
}

@media (max-width: 640px) {
  .loft-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px;
    gap: 20px;
  }
}

/* ══════════════════════════════════════
   O APÊ: SWITCHER · HERO RATING · ANCHOR NAV
   ══════════════════════════════════════ */

/* ── Accommodation Switcher ── */
.ape-switcher {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.ape-switcher .rot-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--brisa);
  text-decoration: none;
}

.ape-switcher .rot-tab:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--off-white);
  transform: none;
}

.ape-switcher .rot-tab.active {
  background: var(--clorofila);
  border-color: var(--clorofila);
  color: white;
}

/* [aria-disabled] reserved for future use if a property is temporarily unavailable */

/* ── Hero Inline Rating ── */
.ape-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-full);
}

.ahr-stars {
  color: #F5A623;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.ahr-score {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
}

.ahr-count {
  font-size: 0.68rem;
  color: var(--brisa);
  letter-spacing: 0.3px;
}

/* ── In-Page Anchor Navigation ── */
.ape-anchor-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--linho);
  padding: 12px 0;
  position: sticky;
  top: 68px; /* height of fixed nav */
  z-index: 100;
  box-shadow: var(--shadow-soft);
}

.ape-anchor-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.aan-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--azul-abissal);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.aan-pill:hover {
  background: var(--azul-abissal);
  border-color: var(--azul-abissal);
  color: white;
  transform: translateY(-1px);
}

.aan-pill--wpp {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
  color: var(--wpp-dark);
  margin-left: auto;
}

.aan-pill--wpp:hover {
  background: var(--wpp);
  border-color: var(--wpp);
  color: white;
}

@media (max-width: 640px) {
  .ape-anchor-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ape-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .ape-anchor-inner {
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    padding-right: 20px;
  }

  .aan-pill--wpp {
    margin-left: 0;
  }
}

/* ══════════════════════════════════════
   UBATUBA: HERO
   ══════════════════════════════════════ */
.ubatuba-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 80px 0 60px;
}

.ubatuba-hero-bg {
  position: absolute;
  inset: 0;
  background: url('Imagens/Cidade/cidade-01.webp') center/cover no-repeat;
  filter: brightness(0.45);
}

.ubatuba-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.ubatuba-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.ubatuba-hero h1 em {
  color: var(--clorofila);
}

.ubatuba-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  font-size: 0.92rem;
}

/* ══════════════════════════════════════
   UBATUBA: INTRO / FACTS
   ══════════════════════════════════════ */
.ubatuba-intro {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.ubatuba-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.uf-item {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease);
}

.uf-item:hover {
  transform: translateY(-4px);
}

.uf-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--turquesa-cristal);
  line-height: 1;
  margin-bottom: 8px;
}

.uf-label {
  font-size: 0.78rem;
  color: var(--argila);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .ubatuba-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* ══════════════════════════════════════
   UBATUBA: PRAIAS
   ══════════════════════════════════════ */
.praias {
  padding: var(--section-padding) 0;
  background: var(--sisal);
}

.region-block {
  margin-bottom: 48px;
}

.region-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.region-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-abissal);
  white-space: nowrap;
}

.region-line {
  flex: 1;
  height: 1px;
  background: var(--duna);
}

.region-sub {
  font-size: 0.82rem;
  color: var(--argila);
  margin-bottom: 24px;
}

.praias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.praia-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linho);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast);
}

.praia-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.pc-photo {
  position: relative;
  overflow: hidden;
}

.pc-photo img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--dur) var(--ease);
}

.praia-card:hover .pc-photo img {
  transform: scale(1.05);
}

.pc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--azul-abissal);
  color: white;
}

.pc-badge.family {
  background: var(--verde-mata);
}

.pc-badge.surf {
  background: var(--turquesa-cristal);
}

.pc-badge.wild {
  background: var(--argila);
}

.pc-body {
  padding: 20px;
}

.pc-dist {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 4px;
}

.pc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 6px;
}

.pc-desc {
  font-size: 0.78rem;
  color: var(--argila);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   UBATUBA: GASTRONOMIA
   ══════════════════════════════════════ */
.gastronomia,
.gastro {
  padding: var(--section-padding) 0;
  background: var(--azul-abissal);
  position: relative;
}

.gastro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 70% 30%, rgba(64, 164, 168, 0.06), transparent);
  pointer-events: none;
}

.gastro .container {
  position: relative;
}

.rest-grid,
.gastro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.rest-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease);
}

.rest-card:hover {
  transform: translateY(-3px);
}

.gastro .rest-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.gastro .rest-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.gastro .rest-name {
  color: var(--off-white);
}

.gastro .rest-cat {
  color: var(--clorofila);
}

.gastro .rest-desc {
  color: var(--brisa);
}

.rest-photo {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.rest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rest-body {
  flex: 1;
}

.rest-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 4px;
}

.rest-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 4px;
}

.rest-desc {
  font-size: 0.78rem;
  color: var(--argila);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   UBATUBA: ATIVIDADES
   ══════════════════════════════════════ */
.atividades {
  padding: var(--section-padding) 0;
  background: var(--sisal);
}

.ativ-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ativ-item {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast);
}

.ativ-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.ativ-icon {
  width: 28px;
  height: 28px;
  stroke: var(--turquesa-cristal);
  margin-bottom: 16px;
}

.ativ-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 8px;
}

.ativ-desc {
  font-size: 0.82rem;
  color: var(--argila);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   UBATUBA: ROTEIROS
   ══════════════════════════════════════ */
.roteiros {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.rot-tabs {
  display: flex;
  gap: 8px;
  margin: 32px 0 28px;
}

.rot-tab {
  padding: 10px 24px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--argila);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.rot-tab:hover {
  color: var(--azul-abissal);
  border-color: var(--brisa);
}

.rot-tab.active {
  background: var(--azul-abissal);
  color: white;
  border-color: var(--azul-abissal);
}

.rot-panel {
  display: none;
}

.rot-panel.active {
  display: block;
}

.rot-days {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rot-day {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-sm);
  transition: transform var(--dur-fast) var(--ease);
}

.rot-day:hover {
  transform: translateX(4px);
}

.rot-day-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--azul-abissal);
  color: white;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

.rot-day-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
}

.rot-day-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azul-abissal);
}

/* ══════════════════════════════════════
   CONTATO: HEADER
   ══════════════════════════════════════ */
.contato-header {
  background: var(--azul-abissal);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.contato-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 70%, rgba(91, 175, 138, 0.1), transparent),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(64, 164, 168, 0.06), transparent);
  pointer-events: none;
}

.contato-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.contato-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.cta-big {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-big:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.cta-big.wpp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.2);
}

.cta-big.wpp:hover {
  background: rgba(37, 211, 102, 0.18);
}

.cta-big.air {
  background: rgba(255, 90, 95, 0.1);
  border-color: rgba(255, 90, 95, 0.2);
}

.cta-big.air:hover {
  background: rgba(255, 90, 95, 0.15);
}

.cta-big-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.cta-big.wpp .cta-big-icon {
  fill: var(--wpp);
}

.cta-big.air .cta-big-icon {
  fill: var(--airbnb);
}

.cta-big-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brisa);
}

.cta-big-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
}

.cta-big-sub {
  font-size: 0.75rem;
  color: var(--brisa);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contato-ctas {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   CONTATO: QUICK INFO
   ══════════════════════════════════════ */
.quick-info {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.qi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.qi-item {
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur-fast) var(--ease);
}

.qi-item:hover {
  transform: translateY(-3px);
}

.qi-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--turquesa-cristal);
  margin-bottom: 6px;
}

.qi-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--azul-abissal);
  margin-bottom: 4px;
}

.qi-note {
  font-size: 0.75rem;
  color: var(--argila);
  line-height: 1.5;
}

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

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

/* ══════════════════════════════════════
   CONTATO: FAQ
   ══════════════════════════════════════ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--sisal);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  max-width: 780px;
}

.faq-item {
  background: white;
  border: 1px solid var(--linho);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--dur-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azul-abissal);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--turquesa-cristal);
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-fast) var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.85rem;
  color: var(--argila);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
footer {
  background: var(--verde-profundo);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
}

.footer-brand em {
  color: var(--clorofila);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--brisa);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--brisa);
  opacity: 0.5;
  width: 100%;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ══════════════════════════════════════
   GLOBAL RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --gutter: 20px;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-content {
    padding: 100px clamp(24px, 5vw, 40px) 80px;
  }
}
