/* ============================================
   Chalé Peperi - Refúgio na natureza
   Cores: #60754D (mata) | #896a41 (terra/madeira) | #f8f1e4 (creme)
   ============================================ */

:root {
  --verde-mata: #60754D;
  --verde-mata-escuro: #4a5d3a;
  --marrom: #896a41;
  --marrom-escuro: #6d5333;
  --creme: #f8f1e4;
  --creme-escuro: #e8dfce;
  --branco: #fff;
  --sombra: rgba(96, 117, 77, 0.15);
  --transição: 0.35s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--marrom-escuro);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ----- Animações: preferência por reduzir movimento ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(248, 241, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(137, 106, 65, 0.12);
  transition: background var(--transição), transform 0.5s var(--ease-out-expo);
  transform: translateY(0);
}

.header.header-visible {
  transform: translateY(0);
}

.header.scrolled {
  background: rgba(248, 241, 228, 0.98);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 56px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--marrom);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transição);
}

.nav a:hover {
  color: var(--verde-mata);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--marrom);
  border-radius: 1px;
  transition: var(--transição);
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 280px;
    height: 100vh;
    background: var(--creme);
    flex-direction: column;
    padding: 4rem 1.5rem 1.5rem;
    gap: 1rem;
    box-shadow: -4px 0 20px var(--sombra);
    transition: right var(--transição);
  }

  .nav.open {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  overflow: visible;
  background: linear-gradient(165deg, var(--verde-mata) 0%, var(--verde-mata-escuro) 50%, #3d4d2a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Pinheiro: 3 setas formando árvore */
.hero-pinetree {
  position: absolute;
  bottom: 8%;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

.pinheiro-arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 32px solid rgba(255, 255, 255, 0.8);
}

.pinheiro-1 {
  margin-bottom: -8px;
  border-left-width: 12px;
  border-right-width: 12px;
  border-bottom-width: 20px;
}

.pinheiro-2 {
  margin-bottom: -8px;
  border-left-width: 18px;
  border-right-width: 18px;
  border-bottom-width: 28px;
}

.pinheiro-3 {
  border-left-width: 28px;
  border-right-width: 28px;
  border-bottom-width: 44px;
}

/* Lottie: pássaro no hero */
.lottie-hero-bird {
  position: absolute;
  top: 12%;
  right: 10%;
  width: min(340px, 70vw);
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
}

.lottie-hero-bird svg {
  width: 100% !important;
  height: auto !important;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--creme);
}

.hero-content--left {
  text-align: left;
}

.hero-content--left .hero-title {
  margin-left: 0;
  margin-right: 0;
}

.hero-content--left .hero-sub {
  margin-left: 0;
  margin-right: 0;
}

.hero-content--left .hero-buttons {
  justify-content: flex-start;
}

.hero-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-video-el {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-video--fallback .hero-video-el {
  display: none;
}

.hero-video--fallback {
  background-size: cover;
  background-position: center;
  background-image: url('assets/fotos/chale-01.png');
}

.hero-video--fallback::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }

  .hero-content--left {
    text-align: center;
  }

  .hero-content--left .hero-title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content--left .hero-sub {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content--left .hero-buttons {
    justify-content: center;
  }

  .hero-video {
    order: -1;
  }

  .lottie-hero-bird {
    display: none;
  }
}

/* Entrada do hero em sequência — texto sempre visível, animação só desloca */
.animate-hero {
  opacity: 1;
  transform: translateY(24px);
  animation: hero-reveal 1s var(--ease-out-expo) forwards;
}

.animate-hero[data-delay="0"] { animation-delay: 0.2s; }
.animate-hero[data-delay="1"] { animation-delay: 0.45s; }
.animate-hero[data-delay="2"] { animation-delay: 0.75s; }
.animate-hero[data-delay="3"] { animation-delay: 1s; }
.animate-hero[data-delay="4"] { animation-delay: 1.35s; }

@keyframes hero-reveal {
  to {
    transform: translateY(0);
  }
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 28ch;
  margin: 0 auto 0.75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.95;
  max-width: 42ch;
  margin: 0 auto 1.75rem;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--creme);
  border: 2px solid rgba(248, 241, 228, 0.7);
}

.btn-hero-secondary:hover {
  background: rgba(248, 241, 228, 0.15);
  border-color: var(--creme);
  color: var(--creme);
  transform: translateY(-2px);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transição);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--marrom);
  color: var(--creme);
}

.btn-primary:hover {
  background: var(--marrom-escuro);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: var(--verde-mata);
  color: var(--creme);
}

.btn-secondary:hover {
  background: var(--verde-mata-escuro);
  box-shadow: 0 8px 24px var(--sombra);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 241, 228, 0.8);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.scroll-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(8px); }
}

/* ----- Seção O Refúgio ----- */
.refugio {
  padding: 5rem 0;
  background: var(--creme);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--verde-mata);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.refugio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.refugio-text .lead {
  font-size: 1.15rem;
  color: var(--marrom);
  margin-bottom: 1rem;
}

.refugio-text p {
  margin-bottom: 1rem;
  color: var(--marrom-escuro);
}

.refugio-historia {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--verde-mata);
  font-style: italic;
  color: var(--marrom);
  opacity: 0.95;
}

.refugio-cta {
  font-style: italic;
  color: var(--verde-mata);
  font-weight: 500;
  margin-top: 1.5rem;
}

.refugio-visual {
  position: relative;
}

.frame {
  border-radius: 8px;
  overflow: hidden;
}

.frame-main {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--creme-escuro);
  box-shadow: 0 20px 50px var(--sombra);
  overflow: hidden;
}

.refugio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.frame-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--verde-mata);
  border-radius: 8px;
  z-index: -1;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(96, 117, 77, 0.2) 0%, rgba(137, 106, 65, 0.3) 100%);
  color: var(--creme);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

  .refugio-visual {
    order: -1;
  }
}

/* ----- Ambiente ----- */
.ambiente {
  position: relative;
  padding: 4rem 0;
  background: var(--verde-mata);
  color: var(--creme);
}

.lottie-squirrel {
  position: absolute;
  top: 1rem;
  right: 5%;
  width: min(100px, 20vw);
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.85;
}

.lottie-squirrel svg {
  width: 100% !important;
  height: auto !important;
}

.section-title--light {
  color: var(--creme);
  text-align: center;
  margin-bottom: 2rem;
}

.ambiente-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.ambiente-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.ambiente-icon {
  font-size: 2rem;
  display: inline-block;
  animation: float-icon 4s ease-in-out infinite;
}

.ambiente-list li:nth-child(1) .ambiente-icon { animation-delay: 0s; }
.ambiente-list li:nth-child(2) .ambiente-icon { animation-delay: 0.5s; }
.ambiente-list li:nth-child(3) .ambiente-icon { animation-delay: 1s; }
.ambiente-list li:nth-child(4) .ambiente-icon { animation-delay: 1.5s; }

/* ----- Comodidades ----- */
.comodidades {
  padding: 4rem 0;
  background: var(--creme);
}

.comodidades-intro {
  max-width: 560px;
  margin-bottom: 1.5rem;
  color: var(--marrom-escuro);
}

.comodidades-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem 1.5rem;
}

.comodidades-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--marrom-escuro);
  font-weight: 500;
}

.comodidade-icon {
  font-size: 1.25rem;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ----- Localização ----- */
.localizacao {
  position: relative;
  padding: 5rem 0;
  background: var(--creme);
  overflow: hidden;
}

.lottie-cow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(160px, 30vw);
  height: auto;
  pointer-events: none;
  opacity: 0.8;
}

.lottie-cow svg {
  width: 100% !important;
  height: auto !important;
}

.localizacao-text {
  max-width: 560px;
  margin-bottom: 1rem;
  color: var(--marrom-escuro);
}

.localizacao-destaques {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--creme-escuro);
  border-radius: 8px;
  max-width: 560px;
  color: var(--marrom);
  font-weight: 500;
}

.localizacao-destaques li {
  position: relative;
  padding-left: 1.5rem;
}

.localizacao-destaques li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  background: var(--verde-mata);
  border-radius: 50%;
}

.localizacao .btn-secondary {
  margin-bottom: 1.5rem;
}

.mapa-embed {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--sombra);
}

.mapa-embed iframe {
  display: block;
}

.map-placeholder {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--creme-escuro);
  border-radius: 8px;
  text-align: center;
  color: var(--marrom);
  font-weight: 500;
}

.map-placeholder p {
  margin: 0.25rem 0;
}

/* ----- Contato / Instagram ----- */
.contato {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--marrom) 0%, var(--marrom-escuro) 100%);
  color: var(--creme);
}

.contato-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.contato-logo {
  flex-shrink: 0;
}

.contato-logo-img {
  width: 120px;
  height: auto;
  display: block;
}

.contato-content {
  flex: 1;
  min-width: 260px;
}

.contato .section-title--light {
  margin-bottom: 0.75rem;
}

.contato-text {
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.contato-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-whatsapp {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all var(--transição);
  border: none;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.instagram-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--creme);
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(248, 241, 228, 0.5);
  border-radius: 8px;
  transition: all var(--transição);
}

.instagram-link:hover {
  background: rgba(248, 241, 228, 0.1);
  border-color: var(--creme);
}

.instagram-handle {
  font-size: 1.25rem;
}

.instagram-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ----- Botão flutuante WhatsApp ----- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transição), box-shadow var(--transição);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float-text {
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .whatsapp-float-text {
    font-size: 0.7rem;
    padding: 0 0.25rem;
  }
}

@media (min-width: 769px) {
  .whatsapp-float {
    width: auto;
    height: auto;
    padding: 0.75rem 1.25rem;
    border-radius: 28px;
    font-size: 0.9rem;
  }

  .whatsapp-float-text {
    padding: 0 0.25rem;
  }
}

/* ----- Footer ----- */
.footer {
  padding: 2rem 0;
  background: var(--verde-mata-escuro);
  color: var(--creme);
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-logo-link {
  flex-shrink: 0;
  line-height: 0;
}

.footer-logo-img {
  height: 250px;
  width: auto;
  display: block;
  transition: opacity var(--transição);
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
}

.footer-content {
  flex: 1;
  min-width: 260px;
  text-align: left;
}

.footer-location {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.footer-text {
  font-size: 0.95rem;
  opacity: 0.95;
  max-width: 360px;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.footer-instagram {
  color: var(--creme);
  text-decoration: none;
  font-weight: 500;
  border: 2px solid rgba(248, 241, 228, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all var(--transição);
}

.footer-instagram:hover {
  background: rgba(248, 241, 228, 0.1);
  border-color: var(--creme);
  color: var(--creme);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.5rem;
}

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

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

  .footer-text {
    margin-left: auto;
    margin-right: auto;
  }

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

/* ----- Reveal ao rolar (scroll) — texto visível; com JS sobe ao entrar na tela ----- */
.reveal {
  opacity: 1;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVO — Celular, Tablet e Web
   ============================================ */

/* Base: toques e áreas seguras */
a, button {
  -webkit-tap-highlight-color: rgba(96, 117, 77, 0.2);
  touch-action: manipulation;
}

/* ----- Tablets (até 1024px) ----- */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 4rem;
    min-height: 80vh;
    min-height: 80dvh;
  }

  .hero-grid {
    gap: 1.5rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .refugio {
    padding: 3.5rem 0;
  }

  .ambiente {
    padding: 3rem 0;
  }

  .comodidades {
    padding: 3rem 0;
  }

  .comodidades-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .localizacao {
    padding: 3.5rem 0;
  }

  .mapa-embed iframe {
    height: 280px;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer-logo-img {
    height: 180px;
  }

  .lottie-squirrel {
    width: min(80px, 18vw);
  }

  .lottie-cow {
    width: min(140px, 28vw);
  }
}

/* ----- Smartphones (até 768px) ----- */
@media (max-width: 768px) {
  .header {
    padding: 0.6rem 1rem;
  }

  .logo-img {
    height: 48px;
    max-width: 160px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 4rem 1rem 3rem;
    min-height: 75vh;
    min-height: 75dvh;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    max-width: none;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 1rem 1.5rem;
  }

  .hero-video-el {
    aspect-ratio: 16/10;
  }

  .hero-scroll {
    bottom: 1rem;
    font-size: 0.75rem;
  }

  .refugio {
    padding: 2.5rem 0;
  }

  .refugio-grid {
    gap: 1.5rem;
  }

  .refugio-text .lead,
  .refugio-text p {
    font-size: 0.95rem;
  }

  .ambiente {
    padding: 2.5rem 0;
  }

  .ambiente-list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .ambiente-list li {
    font-size: 0.9rem;
  }

  .ambiente-icon {
    font-size: 1.75rem;
  }

  .comodidades {
    padding: 2.5rem 0;
  }

  .comodidades-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1rem;
  }

  .comodidades-list li {
    font-size: 0.9rem;
  }

  .localizacao-destaques {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .localizacao .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .mapa-embed {
    margin-top: 1rem;
    border-radius: 8px;
  }

  .mapa-embed iframe {
    height: 220px;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .footer-container {
    gap: 1rem;
  }

  .footer-logo-img {
    height: 140px;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-links {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links .btn-whatsapp,
  .footer-instagram {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .lottie-squirrel {
    top: 0.5rem;
    width: 70px;
  }

  .lottie-cow {
    width: 120px;
  }
}

/* ----- Celulares pequenos (até 480px) ----- */
@media (max-width: 480px) {
  .header {
    padding: 0.5rem 0.75rem;
  }

  .logo-img {
    height: 42px;
    max-width: 140px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 3.5rem 0.75rem 2.5rem;
    min-height: 70vh;
    min-height: 70dvh;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-title--light {
    margin-bottom: 1.25rem;
  }

  .refugio {
    padding: 2rem 0;
  }

  .ambiente {
    padding: 2rem 0;
  }

  .ambiente-list {
    grid-template-columns: 1fr;
  }

  .comodidades-list {
    grid-template-columns: 1fr;
  }

  .localizacao {
    padding: 2rem 0;
  }

  .mapa-embed iframe {
    height: 200px;
  }

  .footer {
    padding: 1.25rem 0;
  }

  .footer-logo-img {
    height: 100px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .lottie-squirrel {
    width: 55px;
  }

  .lottie-cow {
    width: 100px;
  }
}

/* ----- Áreas seguras (notch, ilha dinâmica) ----- */
@supports (padding: env(safe-area-inset-bottom)) {
  .whatsapp-float {
    bottom: calc(1rem + env(safe-area-inset-bottom));
    right: calc(1rem + env(safe-area-inset-right));
  }

  .footer {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom));
  }

  @media (max-width: 768px) {
    .whatsapp-float {
      bottom: calc(1rem + env(safe-area-inset-bottom));
      right: calc(1rem + env(safe-area-inset-right));
    }
  }

  @media (max-width: 480px) {
    .whatsapp-float {
      bottom: calc(0.75rem + env(safe-area-inset-bottom));
      right: calc(0.75rem + env(safe-area-inset-right));
    }
  }
}
