/* ===== HERO H1 TYPEWRITER ===== */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) rotate(-2deg);
  animation: wordReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  white-space: nowrap;
}

@keyframes wordReveal {
  0%   { opacity: 0; transform: translateY(14px) rotate(-3deg) scaleY(0.8); }
  65%  { opacity: 1; transform: translateY(-2px) rotate(0.5deg) scaleY(1.03); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg) scaleY(1); }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1a7a3c;
  --green-dark: #145f2e;
  --green-light: #e8f5ee;
  --orange: #f47920;
  --orange-dark: #d96510;
  --white: #ffffff;
  --gray: #f7f7f7;
  --text: #2d2d2d;
  --text-light: #666;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.btn-primary svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,121,32,0.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; margin: 12px 0 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }

.section-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.section-badge-white {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.highlight { color: var(--orange); }
.highlight-white { color: var(--orange); }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  animation: logoShimmer 3s ease-in-out infinite;
  white-space: nowrap;
}
.logo-text strong {
  font-weight: 900;
  color: var(--orange);
}

.logo-emoji {
  font-size: 1.2rem;
  display: inline-block;
}
.logo-emoji.e1 { animation: floatEmoji 2.5s ease-in-out infinite; }
.logo-emoji.e2 { animation: floatEmoji 2.5s ease-in-out infinite 0.6s; }

@keyframes logoShimmer {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.03); }
}

@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-4px) rotate(8deg); }
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--green-light); color: var(--green); }

.btn-header {
  display: inline-flex;
  align-items: center;
  background: var(--green);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.btn-header:hover { background: var(--green-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  border-top: 1px solid #eee;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.2s;
}
.nav-mobile-link:hover { background: var(--green-light); color: var(--green); }

/* ===== HERO ===== */
#hero {
  background: var(--green);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: -30%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(244,121,32,0.08) 0%, transparent 40%);
  pointer-events: none;
  will-change: transform;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.10)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3C!-- melancia --%3E%3Cellipse cx='40' cy='40' rx='18' ry='14' transform='rotate(-30 40 40)'/%3E%3Cline x1='40' y1='26' x2='40' y2='20'/%3E%3Cline x1='22' y1='40' x2='58' y2='40' stroke-dasharray='3,4'/%3E%3C!-- flor --%3E%3Ccircle cx='160' cy='30' r='5'/%3E%3Ccircle cx='160' cy='18' r='4'/%3E%3Ccircle cx='160' cy='42' r='4'/%3E%3Ccircle cx='148' cy='30' r='4'/%3E%3Ccircle cx='172' cy='30' r='4'/%3E%3C!-- abelha --%3E%3Cellipse cx='270' cy='60' rx='10' ry='7'/%3E%3Cellipse cx='258' cy='55' rx='7' ry='4' transform='rotate(-30 258 55)'/%3E%3Cellipse cx='258' cy='65' rx='7' ry='4' transform='rotate(30 258 65)'/%3E%3Cline x1='262' y1='60' x2='280' y2='60'/%3E%3Cline x1='265' y1='57' x2='265' y2='63'/%3E%3Cline x1='271' y1='57' x2='271' y2='63'/%3E%3C!-- folha --%3E%3Cpath d='M100 160 Q120 140 140 160 Q120 180 100 160Z'/%3E%3Cline x1='120' y1='160' x2='120' y2='145'/%3E%3C!-- maçã --%3E%3Cpath d='M200 150 Q200 130 220 130 Q240 130 240 150 Q240 170 220 175 Q200 170 200 150Z'/%3E%3Cline x1='220' y1='130' x2='222' y2='120'/%3E%3Cpath d='M222 120 Q230 112 235 118'/%3E%3C!-- estrela --%3E%3Cpolygon points='50,220 53,230 63,230 55,236 58,246 50,240 42,246 45,236 37,230 47,230'/%3E%3C!-- gota --%3E%3Cpath d='M280 200 Q280 185 290 195 Q300 205 290 215 Q280 215 280 200Z'/%3E%3C!-- florzinha pequena --%3E%3Ccircle cx='160' cy='270' r='4'/%3E%3Ccircle cx='160' cy='260' r='3'/%3E%3Ccircle cx='160' cy='280' r='3'/%3E%3Ccircle cx='150' cy='270' r='3'/%3E%3Ccircle cx='170' cy='270' r='3'/%3E%3C!-- coração --%3E%3Cpath d='M60 290 Q60 280 70 280 Q80 280 80 290 Q80 300 60 310 Q40 300 40 290 Q40 280 50 280 Q60 280 60 290Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  pointer-events: none;
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 60px;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-wrapper {
  width: 100%;
  max-width: 420px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  aspect-ratio: 3/4;
}
.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-float {
  position: absolute;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  white-space: nowrap;
}
.badge-1 { top: 10%; left: -10%; animation: floatDeco 3s ease-in-out infinite; }
.badge-2 { bottom: 15%; right: -8%; animation: floatDeco 3s ease-in-out infinite 1.2s; }

.hero-wave { line-height: 0; margin-top: -2px; }
.hero-wave svg { display: block; width: 100%; }

/* ===== SOBRE ===== */
#sobre { background: var(--white); }

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sobre-logo-destaque {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sobre-logo-bg {
  background: var(--green-light);
  border-radius: 50%;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: liquidBlob 6s ease-in-out infinite;
}

.sobre-logo-bg::before,
.sobre-logo-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(26,122,60,0.08);
  animation: liquidBlob 6s ease-in-out infinite;
}
.sobre-logo-bg::before {
  inset: -20px;
  animation-delay: -2s;
  animation-duration: 7s;
}
.sobre-logo-bg::after {
  inset: -40px;
  background: rgba(26,122,60,0.05);
  animation-delay: -4s;
  animation-duration: 9s;
}

@keyframes liquidBlob {
  0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
  20%  { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  40%  { border-radius: 45% 55% 40% 60% / 60% 40% 58% 42%; }
  60%  { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
  80%  { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
  100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
}

.sobre-logo-bg img {
  width: 75%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(26,122,60,0.2));
}

.sobre-logo-deco {
  position: absolute;
  font-size: 2rem;
  animation: floatDeco 3s ease-in-out infinite;
  user-select: none;
}
.deco-1 { top: 10%;  left: 8%;  animation-delay: 0s; }
.deco-2 { top: 8%;   right: 10%; animation-delay: 0.8s; }
.deco-3 { bottom: 12%; left: 10%; animation-delay: 1.4s; }
.deco-4 { bottom: 10%; right: 8%; animation-delay: 0.4s; }

@keyframes floatDeco {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.sobre-text .section-badge { margin-bottom: 16px; }
.sobre-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 20px; }
.sobre-text p { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }

.sobre-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px;
  background: var(--green-light);
  border-radius: var(--radius);
}
.stat { text-align: center; flex: 1; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 900; color: var(--green); }
.stat span { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }

/* ===== DIFERENCIAIS ===== */
#diferenciais {
  background: var(--green);
  padding: 0;
  position: relative;
}

.diferenciais-wave-top, .diferenciais-wave-bottom { line-height: 0; }
.diferenciais-wave-top svg, .diferenciais-wave-bottom svg { display: block; width: 100%; }

#diferenciais .container { padding-top: 60px; padding-bottom: 60px; }
#diferenciais .section-header h2 { color: var(--white); }
#diferenciais .section-header p { color: rgba(255,255,255,0.8); }

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-card {
  perspective: 900px;
  cursor: default;
  background: transparent;
  border: none;
  padding: 0;
  min-height: 200px;
}

.diferencial-icon { font-size: 2.5rem; margin-bottom: 16px; }
.diferencial-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 12px; }
.diferencial-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.8); }

/* ===== FAIXAS ETÁRIAS ===== */
#faixas { background: var(--gray); }

.faixas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.faixa-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 4px solid var(--green-light);
}
.faixa-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.faixa-destaque {
  border-top-color: var(--orange);
  transform: scale(1.04);
  box-shadow: var(--shadow-hover);
}
.faixa-destaque:hover { transform: scale(1.04) translateY(-6px); }

.faixa-icon { font-size: 3rem; margin-bottom: 16px; }
.faixa-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--green); margin-bottom: 8px; }
.faixa-idade { font-size: 0.9rem; font-weight: 700; color: var(--orange); margin-bottom: 20px; }

.faixa-card ul { text-align: left; margin-bottom: 28px; }
.faixa-card ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.faixa-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.btn-faixa {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}
.btn-faixa:hover { background: var(--green-dark); transform: translateY(-2px); }
.faixa-destaque .btn-faixa { background: var(--orange); }
.faixa-destaque .btn-faixa:hover { background: var(--orange-dark); }

/* ===== PADRÃO DECORATIVO (seções verdes) ===== */
.bg-pattern {
  position: relative;
  overflow: hidden;
  --parallax-y: 0px;
}
.bg-pattern::before {
  content: '';
  position: absolute;
  inset: -30%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.10)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cellipse cx='40' cy='40' rx='18' ry='14' transform='rotate(-30 40 40)'/%3E%3Cline x1='40' y1='26' x2='40' y2='20'/%3E%3Cline x1='22' y1='40' x2='58' y2='40' stroke-dasharray='3,4'/%3E%3Ccircle cx='160' cy='30' r='5'/%3E%3Ccircle cx='160' cy='18' r='4'/%3E%3Ccircle cx='160' cy='42' r='4'/%3E%3Ccircle cx='148' cy='30' r='4'/%3E%3Ccircle cx='172' cy='30' r='4'/%3E%3Cellipse cx='270' cy='60' rx='10' ry='7'/%3E%3Cellipse cx='258' cy='55' rx='7' ry='4' transform='rotate(-30 258 55)'/%3E%3Cellipse cx='258' cy='65' rx='7' ry='4' transform='rotate(30 258 65)'/%3E%3Cline x1='262' y1='60' x2='280' y2='60'/%3E%3Cline x1='265' y1='57' x2='265' y2='63'/%3E%3Cline x1='271' y1='57' x2='271' y2='63'/%3E%3Cpath d='M100 160 Q120 140 140 160 Q120 180 100 160Z'/%3E%3Cline x1='120' y1='160' x2='120' y2='145'/%3E%3Cpath d='M200 150 Q200 130 220 130 Q240 130 240 150 Q240 170 220 175 Q200 170 200 150Z'/%3E%3Cline x1='220' y1='130' x2='222' y2='120'/%3E%3Cpath d='M222 120 Q230 112 235 118'/%3E%3Cpolygon points='50,220 53,230 63,230 55,236 58,246 50,240 42,246 45,236 37,230 47,230'/%3E%3Cpath d='M280 200 Q280 185 290 195 Q300 205 290 215 Q280 215 280 200Z'/%3E%3Ccircle cx='160' cy='270' r='4'/%3E%3Ccircle cx='160' cy='260' r='3'/%3E%3Ccircle cx='160' cy='280' r='3'/%3E%3Ccircle cx='150' cy='270' r='3'/%3E%3Ccircle cx='170' cy='270' r='3'/%3E%3Cpath d='M60 290 Q60 280 70 280 Q80 280 80 290 Q80 300 60 310 Q40 300 40 290 Q40 280 50 280 Q60 280 60 290Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 320px 320px;
  pointer-events: none;
  z-index: 0;
  transform: translateY(var(--parallax-y));
  will-change: transform;
}
.bg-pattern > * { position: relative; z-index: 1; }

/* ===== GALERIA CARROSSEL ===== */
#galeria {
  background: var(--green);
  padding: 0;
}

.galeria-wave-top, .galeria-wave-bottom { line-height: 0; }
.galeria-wave-top svg, .galeria-wave-bottom svg { display: block; width: 100%; }

#galeria .container { padding-top: 60px; padding-bottom: 60px; }
#galeria .section-header h2 { color: var(--white); }

.gallery-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-track-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.gallery-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,122,60,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* Botões do carrossel */
.gallery-btn {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 10;
  pointer-events: all;
}
.gallery-btn:hover:not(:disabled) { background: rgba(255,255,255,0.3); transform: scale(1.1); }
.gallery-btn:disabled { opacity: 0.3; cursor: default; pointer-events: none; }

/* Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.gallery-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrapper img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-close { top: 20px; right: 20px; font-size: 1rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ===== DEPOIMENTOS CARROSSEL ===== */
#depoimentos { background: var(--gray); overflow: hidden; }

.depo-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.depo-score {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.depo-stars-big { font-size: 1.3rem; }
.depo-total { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }

.depo-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.depo-track-outer {
  flex: 1;
  overflow: hidden;
}

.depo-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.depo-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  flex: 0 0 calc((100% - 48px) / 3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid var(--orange);
  transition: transform 0.3s, box-shadow 0.3s;
}
.depo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.depo-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  overflow: hidden;
}
.depo-card-top > div:nth-child(2) { flex: 1; }
.depo-card-top strong { display: block; font-size: 0.95rem; color: var(--text); }
.depo-stars { font-size: 0.85rem; margin-top: 2px; }
.depo-google-icon {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.5;
}
.depo-card > p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  font-style: italic;
  flex: 1;
}

.depo-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--white);
  border: 2px solid #e0e0e0;
  color: var(--green);
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.depo-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.depo-btn:disabled { opacity: 0.3; cursor: default; }

.depo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.depo-dot.active { background: var(--orange); transform: scale(1.4); }

.depo-cta {
  text-align: center;
  margin-top: 36px;
}

@media (max-width: 768px) {
  .depo-card { flex: 0 0 100%; }
  .depo-btn { width: 36px; height: 36px; font-size: 1.4rem; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .depo-card { flex: 0 0 calc((100% - 24px) / 2); }
}

/* ===== CONTATO ===== */
#contato {
  background: var(--green);
  padding: 0;
}

.contato-wave-top { line-height: 0; }
.contato-wave-top svg { display: block; width: 100%; }

#contato .container { padding-top: 60px; padding-bottom: 80px; }
#contato .section-header h2 { color: var(--white); }

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contato-info { display: flex; flex-direction: column; gap: 24px; }

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--white);
}
.contato-icon { font-size: 1.5rem; flex-shrink: 0; }
.contato-item strong { display: block; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; color: rgba(255,255,255,0.7); }
.contato-item span { font-size: 1rem; font-weight: 600; }

.btn-whatsapp-big { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

/* ===== FOOTER ===== */
#footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-logo img { height: 112px; width: auto; margin-bottom: 16px; }
.footer-logo p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 280px; }

.footer-links, .footer-contato { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4, .footer-contato h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contato p { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

.footer-wa {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  margin-top: 8px;
  transition: background 0.2s;
  width: fit-content;
}
.footer-wa:hover { background: var(--orange-dark); }

.footer-infoarte {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  transition: background 0.2s;
  text-decoration: none;
}
.footer-infoarte:hover { background: rgba(255,255,255,0.15); }
.footer-infoarte span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.footer-infoarte img {
  height: 28px;
  width: auto;
  display: block;
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: 62px;
  pointer-events: none;
}

.wa-float-wrapper > * {
  pointer-events: all;
}

/* Botão flutuante */
.wa-float-btn {
  width: 62px;
  height: 62px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  position: relative;
  animation: waBounceIn 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float-btn svg { width: 32px; height: 32px; }
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* Pulse ring */
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: waPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes waBounceIn {
  0% { opacity: 0; transform: scale(0) translateY(40px); }
  60% { opacity: 1; transform: scale(1.15) translateY(-6px); }
  80% { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Chat bubble */
.wa-chat-bubble {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  width: 320px;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  pointer-events: none;
  visibility: hidden;
}

.wa-chat-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.wa-bubble-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}
.wa-bubble-close:hover { background: rgba(255,255,255,0.35); }

.wa-bubble-header {
  background: var(--green);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wa-bubble-avatar {
  position: relative;
  flex-shrink: 0;
}
.wa-bubble-avatar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  background: white;
}
.wa-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 12px;
  height: 12px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid var(--green);
}

.wa-bubble-info strong { display: block; color: white; font-size: 0.95rem; font-weight: 800; }
.wa-bubble-info span { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.wa-bubble-body {
  padding: 20px;
  background: #e5ddd5;
  min-height: 100px;
}

.wa-message {
  background: white;
  border-radius: 12px 12px 12px 0;
  padding: 14px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  max-width: 90%;
}
.wa-message p { font-size: 0.88rem; line-height: 1.6; color: var(--text); margin-bottom: 6px; }
.wa-message p:last-of-type { margin-bottom: 0; }
.wa-time { display: block; text-align: right; font-size: 0.72rem; color: #999; margin-top: 6px; }

.wa-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 16px;
  transition: background 0.2s;
}
.wa-bubble-cta svg { width: 20px; height: 20px; flex-shrink: 0; }
.wa-bubble-cta:hover { background: #1ebe5d; }

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible, .fade-left.visible {
  opacity: 1;
  transform: none;
}

/* ===== ÂNCORA ATIVA NO MENU ===== */
.nav-links a.active {
  background: var(--green-light);
  color: var(--green);
}

/* ===== FLIP CARD DIFERENCIAIS ===== */
.diferencial-card {
  perspective: 900px;
  cursor: default;
}
.diferencial-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4,0.2,0.2,1);
}
.diferencial-card:hover .diferencial-card-inner {
  transform: rotateY(180deg);
}
.diferencial-front, .diferencial-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: var(--radius);
}
.diferencial-front {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  text-align: center;
}
.diferencial-back {
  background: var(--orange);
  color: var(--white);
  transform: rotateY(180deg);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 600;
}
.diferencial-back p { margin: 0; }

/* ===== BARRA DE PROGRESSO GALERIA ===== */
.gallery-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  margin-bottom: -4px;
}
.gallery-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.gallery-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
  width: 50%;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gallery-progress-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

/* ===== ESTRELAS ANIMADAS ===== */
.depo-stars {
  font-size: 0.85rem;
  margin-top: 2px;
  display: flex;
  gap: 1px;
}
.depo-stars .star {
  display: inline-block;
  opacity: 0;
  transform: scale(0) rotate(-30deg);
  animation: starPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes starPop {
  0%   { opacity: 0; transform: scale(0) rotate(-30deg); }
  70%  { opacity: 1; transform: scale(1.3) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ===== WA SHAKE ===== */
@keyframes waShake {
  0%,100% { transform: rotate(0deg) scale(1); }
  15%      { transform: rotate(-14deg) scale(1.05); }
  30%      { transform: rotate(14deg) scale(1.05); }
  45%      { transform: rotate(-8deg); }
  60%      { transform: rotate(8deg); }
  75%      { transform: rotate(-4deg); }
  90%      { transform: rotate(4deg); }
}
.wa-float-btn.shake {
  animation: waShake 0.65s ease-in-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-page { grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links, .btn-header { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-image { display: none; }

  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-logo-bg { width: 260px; height: 260px; }

  .diferenciais-grid { grid-template-columns: 1fr; }

  .faixas-grid { grid-template-columns: 1fr; }
  .faixa-destaque { transform: none; }
  .faixa-destaque:hover { transform: translateY(-6px); }

  .gallery-page { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); }
  .gallery-btn { width: 36px; height: 36px; font-size: 1.4rem; }

  .depoimentos-grid { grid-template-columns: 1fr; }

  .contato-inner { grid-template-columns: 1fr; }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-logo {
    text-align: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .footer-logo img { margin: 0 auto 16px; }
  .footer-logo p { margin: 0 auto 16px; }
  .footer-infoarte { margin: 0 auto; }

  .footer-nav-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }

  .footer-links, .footer-contato { gap: 8px; }
  .footer-links h4, .footer-contato h4 { margin-bottom: 10px; }

  .footer-wa {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

  .wa-chat-bubble { width: 290px; }
  .wa-float-wrapper { bottom: 20px; right: 16px; }

  .badge-1, .badge-2 { display: none; }
}

@media (max-width: 480px) {
  .gallery-carousel { gap: 8px; }
  .gallery-page { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 1fr); }
  .gallery-btn { width: 32px; height: 32px; font-size: 1.2rem; }
}
