/* ==========================================================================
   Pousada do Farol — Estilo principal
   ========================================================================== */

:root {
  --sunset: #B94A1A;
  --sunset-light: #F28B5F;
  --sunset-dark: #C4491A;
  --ocean: #0C7B93;
  --ocean-light: #1BA3C6;
  --ocean-dark: #065A6B;
  --sand: #F5E6D3;
  --sand-light: #FFF8F0;
  --sand-dark: #D4C4B0;
  --driftwood: #8B7355;
  --palm: #2D5016;
  --foam: #FFFFFF;
  --night: #1A1A2E;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-accent: 'Caveat', cursive;
}

/* -------- Reset -------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--sand-light);
  color: var(--night);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--sunset); border-radius: 4px; }

/* -------- Utilidades -------- */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-center { text-align: center; }
.text-sunset { color: var(--sunset); font-style: italic; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.section { padding: 6rem 0; position: relative; overflow: hidden; }
@media (min-width: 640px) { .section { padding: 8rem 0; } }
.section-dark { background: var(--night); color: var(--foam); }
.section-sand { background: var(--sand); }

.section-header { text-align: center; margin-bottom: 4rem; }
.eyebrow {
  color: var(--sunset);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--sunset-light); }

.heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--night);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .heading { font-size: 3rem; } }
.heading-light { color: var(--foam); }

.divider {
  width: 4rem; height: 4px;
  background: var(--sunset);
  border-radius: 9999px;
  margin-bottom: 2rem;
}
.divider-center { margin-left: auto; margin-right: auto; margin-bottom: 1.5rem; }

.lead {
  font-size: 1.125rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.lead-light { color: rgba(255,255,255,0.6); }

/* -------- Botões -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1;
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }
.btn-icon svg { width: 1.25rem; height: 1.25rem; }

.btn-sunset { background: var(--sunset); color: var(--foam); box-shadow: 0 10px 20px -10px rgba(185, 74, 26, 0.5); }
.btn-sunset:hover { background: var(--sunset-dark); transform: scale(1.05); }

.btn-ghost { background: rgba(255,255,255,0.1); color: var(--foam); border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-outline { background: var(--foam); color: var(--night); border: 1px solid rgba(212, 196, 176, 0.4); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.btn-outline:hover { background: var(--sunset); color: var(--foam); border-color: var(--sunset); }

.btn-instagram { background: linear-gradient(to right, #f09433, #dc2743, #bc1888); color: var(--foam); box-shadow: 0 10px 20px -10px rgba(220, 39, 67, 0.5); }
.btn-instagram:hover { filter: brightness(1.1); transform: scale(1.05); }

/* -------- Navbar -------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: all 0.5s;
  background: transparent;
}
.navbar.is-scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo { position: relative; display: block; height: 3rem; width: 10rem; }
.navbar-logo img {
  position: absolute; inset: 0;
  height: 100%; width: 100%;
  object-fit: contain;
  transition: opacity 0.3s;
}
.navbar-logo .logo-color { opacity: 0; }
.navbar.is-scrolled .logo-white { opacity: 0; }
.navbar.is-scrolled .logo-color { opacity: 1; }

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  transition: color 0.2s;
}
.navbar-links a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--sunset);
  transition: width 0.3s;
}
.navbar-links a:not(.btn):hover { color: var(--foam); }
.navbar-links a:not(.btn):hover::after { width: 100%; }

.navbar.is-scrolled .navbar-links a:not(.btn) { color: rgba(26,26,46,0.7); }
.navbar.is-scrolled .navbar-links a:not(.btn):hover { color: var(--sunset); }

@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}

.navbar-toggle {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0.5rem;
}
.navbar-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--foam);
  transition: all 0.3s;
  transform-origin: center;
}
.navbar.is-scrolled .navbar-toggle span { background: var(--night); }
.navbar-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--sunset); }
.navbar-toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--sunset); }

@media (min-width: 1024px) {
  .navbar-toggle { display: none; }
}

.navbar-mobile {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s, opacity 0.5s;
}
.navbar-mobile.is-open { max-height: 500px; opacity: 1; }
.navbar-mobile-inner {
  background: rgba(255, 248, 240, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  border-top: 1px solid rgba(212, 196, 176, 0.2);
}
.navbar-mobile a:not(.btn) {
  color: rgba(26,26,46,0.75);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.navbar-mobile a:not(.btn):hover { color: var(--sunset); }

/* -------- Hero -------- */
.hero { position: relative; height: 100vh; width: 100%; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-color: var(--night);
}
.hero-slide.is-active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to bottom, rgba(26,26,46,0.6) 0%, rgba(26,26,46,0.2) 50%, rgba(26,26,46,0.7) 100%);
}
.hero-fade-bottom {
  position: absolute; left: 0; right: 0; bottom: 0; height: 8rem; z-index: 10;
  background: linear-gradient(to top, var(--sand-light), transparent);
}

.hero-content {
  position: relative; z-index: 20;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1rem;
}
.hero-kicker {
  font-size: 1.125rem;
  color: var(--sunset-light);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-kicker { font-size: 1.25rem; } }

.hero-title {
  font-family: var(--font-display);
  color: var(--foam);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
@media (min-width: 640px) { .hero-title { font-size: 4rem; } }
@media (min-width: 768px) { .hero-title { font-size: 5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }

.hero-subtitle {
  font-family: var(--font-accent);
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.75rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 2rem; } }

.hero-buttons {
  display: flex; flex-direction: column; gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.hero-dots {
  position: absolute;
  left: 50%; bottom: 10rem;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; gap: 0.25rem;
}
@media (min-width: 640px) { .hero-dots { bottom: 10rem; gap: 0.5rem; } }
.hero-dots button {
  padding: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
.hero-dots button::before {
  content: '';
  display: block;
  width: 10px; height: 10px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
  transition: all 0.4s;
}
.hero-dots button:hover::before { background: rgba(255,255,255,0.8); }
.hero-dots button.is-active::before {
  width: 32px;
  background: var(--sunset);
}

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 20;
  animation: float 3s ease-in-out infinite;
}
.mouse {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 9999px;
  display: flex; justify-content: center;
  padding-top: 8px;
}
.mouse span {
  display: block;
  width: 4px; height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 9999px;
  animation: pulse 1.5s infinite;
}

/* -------- Sobre -------- */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.sobre-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sobre-col { display: flex; flex-direction: column; gap: 1rem; }
.sobre-col-offset { padding-top: 2rem; }

.sobre-img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
  background: #e8ddd0;
}
.sobre-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.sobre-img:hover img { transform: scale(1.1); }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }

.sobre-badge {
  position: absolute;
  right: -1.5rem; bottom: -1.5rem;
  background: var(--sunset);
  color: var(--foam);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  font-family: var(--font-accent);
  font-size: 1.875rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(185, 74, 26, 0.4);
  z-index: 10;
}

.tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.5rem; }
.tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sand);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.7);
}
.tag .dot { width: 8px; height: 8px; border-radius: 9999px; display: inline-block; }
.bg-sunset { background: var(--sunset); }
.bg-ocean { background: var(--ocean); }
.bg-palm { background: var(--palm); }

/* -------- Acomodações -------- */
.wave { position: absolute; left: 0; right: 0; height: 80px; z-index: 1; }
.wave svg { width: 100%; height: 100%; fill: var(--sand-light); display: block; }
.wave-top { top: 0; transform: translateY(-1px); }
.wave-bottom { bottom: 0; transform: translateY(1px); }
.section-dark + * .wave svg, .footer .wave svg { fill: var(--sand-light); }

.section-dark .container, .footer .container { position: relative; z-index: 10; }

.acomodacoes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .acomodacoes-grid { grid-template-columns: repeat(3, 1fr); } }

.room-card {
  background: rgba(26,26,46,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.5s;
}
.room-card:hover {
  border-color: rgba(185, 74, 26, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(185, 74, 26, 0.15);
}
.room-img { position: relative; height: 16rem; overflow: hidden; background: var(--night); }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.room-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.6), transparent);
}
.room-card:hover .room-img img { transform: scale(1.1); }
.room-body { padding: 1.5rem; }
.room-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foam);
  margin-bottom: 0.75rem;
}
.room-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  font-size: 0.75rem;
  background: rgba(185, 74, 26, 0.1);
  color: var(--sunset-light);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(185, 74, 26, 0.2);
}

/* -------- Comodidades -------- */
.comodidades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .comodidades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .comodidades-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--foam);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 196, 176, 0.25);
  text-align: center;
  transition: all 0.5s;
}
.feature-card:hover {
  border-color: rgba(185, 74, 26, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(185, 74, 26, 0.1);
}
.feature-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: rgba(185, 74, 26, 0.1);
  color: var(--sunset);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s;
}
.feature-icon svg { width: 2rem; height: 2rem; }
.feature-card:hover .feature-icon {
  background: var(--sunset);
  color: var(--foam);
  transform: scale(1.1);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: rgba(26,26,46,0.6);
  line-height: 1.6;
}

/* -------- Galeria -------- */
.galeria-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  margin-top: 2rem;
}
.galeria-filters button {
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,26,46,0.6);
  background: var(--foam);
  transition: all 0.3s;
}
.galeria-filters button:hover { background: rgba(185, 74, 26, 0.1); color: var(--sunset); }
.galeria-filters button.is-active {
  background: var(--sunset);
  color: var(--foam);
  box-shadow: 0 10px 20px -10px rgba(185, 74, 26, 0.5);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 200px;
}
@media (min-width: 768px) {
  .galeria-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
}
@media (min-width: 1024px) {
  .galeria-grid { grid-template-columns: repeat(4, 1fr); }
}

.galeria-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #e8ddd0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.4s;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.galeria-item.is-large { grid-column: span 2; grid-row: span 2; }
.galeria-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.galeria-item:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15); }
.galeria-item:hover img { transform: scale(1.1); }
.galeria-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,26,46,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.galeria-item:hover::after { opacity: 1; }

/* -------- Localização -------- */
.localizacao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .localizacao-grid { grid-template-columns: 1fr 2fr; }
}

.local-info { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card {
  background: var(--foam);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 196, 176, 0.2);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 1.5rem; height: 1.5rem; }
.bg-sunset-soft { background: rgba(185, 74, 26, 0.1); }
.text-sunset { color: var(--sunset); }
.bg-ocean-soft { background: rgba(12, 123, 147, 0.1); }
.text-ocean { color: var(--ocean); }
.bg-palm-soft { background: rgba(45, 80, 22, 0.1); }
.text-palm { color: var(--palm); }

.info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--night);
  margin-bottom: 0.25rem;
}
.info-card p {
  font-size: 0.875rem;
  color: rgba(26,26,46,0.65);
  line-height: 1.6;
}
.link-ocean, .link-palm { font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.link-ocean { color: var(--ocean); }
.link-ocean:hover { color: var(--ocean-dark); }
.link-palm { color: var(--palm); }
.link-palm:hover { opacity: 0.8; }

.local-map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.12);
  border: 1px solid rgba(212, 196, 176, 0.2);
  height: 400px;
}
@media (min-width: 1024px) { .local-map { height: 480px; } }

/* -------- Footer -------- */
.footer {
  position: relative;
  background: var(--night);
  color: var(--foam);
  padding: 9rem 0 2rem;
  overflow: hidden;
}
.footer-inner { position: relative; z-index: 10; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-logo { height: 3.5rem; width: auto; margin-bottom: 1.5rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.footer-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 2.75rem; height: 2.75rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.social-btn svg { width: 1.25rem; height: 1.25rem; }
.social-instagram:hover { background: var(--sunset); color: var(--foam); }
.social-whatsapp:hover { background: #25D366; color: var(--foam); }

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sunset); }
.footer-links a::before {
  content: '';
  display: block;
  width: 0; height: 2px;
  background: var(--sunset);
  transition: width 0.3s;
}
.footer-links a:hover::before { width: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-bottom strong { color: rgba(255,255,255,0.75); font-weight: 500; }

.footer::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 74, 26, 0.3), transparent);
}

/* -------- Bottom Bars Mobile -------- */
.bottom-bars {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.5s;
}
.bottom-bars.is-visible { transform: translateY(0); }
.bottom-bar {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem;
  color: #fff;
  transition: filter 0.3s;
}
.bottom-bar svg { width: 1.25rem; height: 1.25rem; }
.bar-instagram { background: linear-gradient(to right, #f09433, #dc2743, #bc1888); }
.bar-whatsapp { background: #25D366; }
.bottom-bar:hover { filter: brightness(1.1); }

/* -------- Lightbox -------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(26,26,46,0.95);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  position: relative;
  max-width: 64rem;
  max-height: 85vh;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.8);
  z-index: 10;
  line-height: 1;
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { color: var(--foam); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
  padding: 1rem;
  z-index: 10;
  line-height: 1;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--foam); }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  text-align: center;
  max-width: 90%;
}

/* -------- Animações -------- */
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero reveal (immediate, delayed) */
.hero .reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

/* Scroll reveal (via JS — use outside hero) */
.section .reveal,
.footer .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: var(--delay, 0s);
}
.section .reveal.is-visible,
.footer .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
