/* =============================================================
   Du Carmo Festas — Landing page
   Paleta: rosa vibrante + verde lima + marrom escuro + cremes
============================================================= */

:root {
  --pink: #EC1B7A;
  --pink-dark: #C8125F;
  --pink-soft: #FF85B5;
  --pink-bg: #FFE5F0;

  --green: #A4D43B;
  --green-dark: #84B226;
  --green-deep: #6FA01F;

  --brown: #3B1F1A;
  --brown-soft: #5C3A33;
  --text: #2A1A18;
  --muted: #7A6A66;

  --cream: #FFF7EE;
  --cream-2: #FCEBDA;
  --white: #ffffff;

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  --shadow-sm: 0 4px 12px rgba(59, 31, 26, 0.08);
  --shadow-md: 0 10px 30px rgba(59, 31, 26, 0.12);
  --shadow-lg: 0 25px 60px rgba(236, 27, 122, 0.18);

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-display: 'Fredoka', 'Poppins', system-ui, sans-serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

/* Evita que o título da seção fique escondido atrás do header sticky ao clicar em âncoras */
section[id], footer[id] { scroll-margin-top: 120px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================================
   UTILS
============================================================= */
.text-pink { color: var(--pink); }
.text-pink-soft { color: var(--pink-soft); }
.text-script {
  font-family: var(--font-script);
  color: var(--brown);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-bg);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow--light {
  color: var(--brown);
  background: rgba(255,255,255,0.85);
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 16px;
}
.title--light { color: var(--white); }

.lead {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 640px;
}

.section { padding: 96px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--green .title--light {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* Título em pílula rosa para destacar sobre o verde */
.title-pill {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 18px 44px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 1.2;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2),
              inset 0 -4px 0 rgba(0, 0, 0, 0.08);
  margin-top: 4px;
  transform: rotate(-1.5deg);
  transition: transform .25s ease;
}
.title-pill:hover { transform: rotate(0deg); }
.title-pill em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  margin-left: 8px;
  font-size: 1.1em;
}
@media (max-width: 560px) {
  .title-pill { padding: 14px 28px; }
}

/* Balões decorativos na seção verde */
.diff__balloon {
  position: absolute;
  font-size: 44px;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
  opacity: 0.85;
}
.diff__balloon--1 { top: 14%; left: 6%; animation-delay: 0s; }
.diff__balloon--2 { top: 22%; right: 8%; font-size: 38px; animation-delay: 1.8s; }
.diff__balloon--3 { bottom: 18%; right: 12%; font-size: 32px; animation-delay: 3.5s; color: #FFD93D; }
.section--green::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.section--green::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.section__head {
  text-align: center;
  margin-bottom: 56px;
}
.section__head .lead { margin: 0 auto; }
.section__head--light { color: var(--white); }
.section__head--light .lead { color: rgba(255,255,255,0.92); }

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--lg { padding: 16px 32px; font-size: 17px; }

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(236, 27, 122, 0.35);
}
.btn--pink:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--white);
}

/* =============================================================
   NAVBAR
============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(59, 31, 26, 0.06);
  transition: box-shadow .2s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 20px rgba(59, 31, 26, 0.1); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
}

.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--brown);
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
}
.nav__logo small {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--pink);
  margin-top: 2px;
}

.nav__menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__menu a {
  font-weight: 500;
  color: var(--brown-soft);
  font-size: 15px;
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--pink); }

.nav__cta { padding: 10px 18px; font-size: 14px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
  border-radius: 10px;
  transition: background .2s ease;
}
.nav__toggle:hover { background: rgba(0, 0, 0, 0.04); }
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

@media (max-width: 920px) {
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 20px;
    gap: 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .25s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a {
    padding: 16px 0;
    border-bottom: 1px solid #f0e8e2;
  }
  .nav__menu a:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* =============================================================
   HERO
============================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
  background:
    radial-gradient(circle at 90% 10%, var(--pink-bg) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(164, 212, 59, 0.18) 0%, transparent 50%),
    var(--cream);
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}
.hero__blob--1 {
  top: -120px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink-soft), var(--pink) 70%);
  opacity: 0.25;
}
.hero__blob--2 {
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--green), var(--green-dark));
  opacity: 0.22;
}

.hero__balloon {
  position: absolute;
  font-size: 40px;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.hero__balloon--1 { top: 18%; right: 8%; animation-delay: 0s; }
.hero__balloon--2 { top: 50%; right: 16%; animation-delay: 1.5s; font-size: 32px; }
.hero__balloon--3 { bottom: 14%; left: 6%; animation-delay: 3s; font-size: 36px; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.hero__visual {
  display: flex;
  justify-content: center;
  margin: 28px 0;
}

/* Desktop: layout original 2 colunas (texto esquerda / imagem direita centralizada) */
@media (min-width: 921px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-areas:
      "badge image"
      "title image"
      "lead  image"
      "cta   image"
      "stats image";
    column-gap: 48px;
    align-items: start;
  }
  .hero__badge  { grid-area: badge; justify-self: start; }
  .hero__title  { grid-area: title; }
  .hero__lead   { grid-area: lead; }
  .hero__visual { grid-area: image; align-self: center; margin: 0; }
  .hero__cta    { grid-area: cta; }
  .hero__stats  { grid-area: stats; }
}

.hero__badge {
  display: inline-block;
  background: var(--white);
  color: var(--brown);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  color: var(--brown);
  margin-bottom: 20px;
}
.hero__title .text-script {
  font-size: 1.1em;
  display: inline-block;
}

.hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--brown-soft);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat b {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.stat span {
  font-size: 15px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__personagens {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(59, 31, 26, 0.18));
}

@media (max-width: 920px) {
  .hero { padding: 60px 0 80px; }
  .hero__badge { display: none; }
  .hero__lead { margin-bottom: 0; }
  .hero__personagens { max-width: 320px; }
  .hero__stats {
    gap: 24px;
    justify-content: center;
    text-align: center;
  }
  .stat { align-items: center; }
  .stat b { font-size: 32px; }
  .stat span { font-size: 14px; }
}

/* =============================================================
   GRID-2 (Sobre)
============================================================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

.check-list {
  list-style: none;
  margin: 24px 0;
}
.check-list li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--brown-soft);
}

.quote {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--pink);
  border-left: 4px solid var(--pink);
  padding-left: 20px;
  margin-top: 24px;
  line-height: 1.4;
}

.about__visual { display: flex; justify-content: center; }
.about__mascotCard {
  background: var(--white);
  padding: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 400px;
  border: 4px dashed var(--pink-soft);
  overflow: hidden;
}
.about__photo {
  width: 100%;
  display: block;
  border-radius: 0;
  margin: 0;
}
.about__cardBody {
  padding: 22px 24px 28px;
}
.about__mascotCard h3 {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--brown);
  margin-bottom: 4px;
  font-weight: 400;
  line-height: 1.1;
}
.about__mascotCard p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 15px;
}

/* =============================================================
   CARDS (Eventos)
============================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid #f5ece4;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: inline-flex;
  width: 80px; height: 80px;
  background: var(--pink-bg);
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 8px;
}
.card p {
  color: var(--muted);
  font-size: 15px;
}

/* =============================================================
   FEATURES (Diferenciais)
============================================================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
}
.feature {
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.feature__check {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(132, 178, 38, 0.4);
}
.feature p {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--brown);
}
.feature p strong { color: var(--pink); }

.diff__cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

/* =============================================================
   VIDEO TRIGGER + MODAL
============================================================= */
.videoTrigger {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 8px;
  border: 4px dashed var(--pink-soft);
  border-radius: var(--radius-xl);
  background: var(--white);
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.videoTrigger:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.videoTrigger img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius-xl) - 12px);
}
.videoTrigger__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35),
              0 0 0 6px rgba(255, 255, 255, 0.25);
  transition: transform .25s ease, background .25s ease;
  padding-left: 4px; /* ajuste óptico do play */
}
.videoTrigger:hover .videoTrigger__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--pink-dark);
}

.videoModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.videoModal[hidden] { display: none; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.videoModal__content {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.videoModal__content video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.videoModal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
  cursor: pointer;
}
.videoModal__close:hover { background: rgba(255, 255, 255, 0.3); }

@media (max-width: 480px) {
  .videoModal { padding: 12px; }
  .videoModal__content { max-width: 100%; }
  .videoTrigger__play { width: 68px; height: 68px; }
}

/* =============================================================
   GALLERY
============================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
  margin: 0;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(to top, rgba(59, 31, 26, 0.85) 0%, rgba(59, 31, 26, 0) 100%);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.gallery__note {
  text-align: center;
  margin-top: 32px;
  color: var(--muted);
  font-size: 15px;
}
.gallery__note a {
  color: var(--pink);
  font-weight: 600;
  border-bottom: 1px dashed var(--pink-soft);
}

/* =============================================================
   TESTIMONIALS
============================================================= */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f5ece4;
  display: flex;
  flex-direction: column;
}
.testimonial p {
  color: var(--brown-soft);
  font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial footer {
  border-top: 1px solid #f0e8e2;
  padding-top: 16px;
}
.testimonial footer strong {
  display: block;
  font-family: var(--font-display);
  color: var(--brown);
  font-weight: 600;
}
.testimonial footer span {
  font-size: 13px;
  color: var(--muted);
}

/* CTA "Veja todas no Google" */
.testimonials__cta {
  text-align: center;
  margin-top: 40px;
}
.testimonials__cta a {
  color: var(--pink);
  font-weight: 600;
  border-bottom: 1px dashed var(--pink-soft);
  padding-bottom: 2px;
}
.testimonials__cta a:hover { color: var(--pink-dark); }

/* =============================================================
   CTA SECTION
============================================================= */
.cta {
  background:
    radial-gradient(circle at 20% 50%, var(--pink-bg) 0%, transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(164, 212, 59, 0.2) 0%, transparent 40%),
    var(--cream);
  padding: 96px 0;
  text-align: center;
}
.cta__inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta__inner p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

.footer__brand {
  font-family: var(--font-script);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-flex;
  flex-direction: column;
}
.footer__brand small {
  font-family: var(--font-display);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--pink-soft);
  margin-top: 4px;
}
.footer__about {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 20px;
}

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer__col p { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.footer__col a { color: var(--pink-soft); }
.footer__col a:hover { color: var(--white); }

.footer__link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
}

.footer__hours {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* =============================================================
   FLOATING WHATSAPP
============================================================= */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  z-index: 100;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform .2s ease;
}
.float-wa:hover { transform: scale(1.1); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* =============================================================
   RESPONSIVO — refinos mobile
============================================================= */
@media (max-width: 720px) {
  .section,
  .cta { padding: 64px 0; }

  .section__head { margin-bottom: 40px; }

  /* Hero — balões menores e mais nos cantos pra não atrapalhar o texto */
  .hero__balloon { font-size: 28px; opacity: 0.7; }
  .hero__balloon--1 { top: 4%; right: 4%; }
  .hero__balloon--2 { display: none; }
  .hero__balloon--3 { bottom: 4%; left: 2%; font-size: 26px; }

  .hero__blob--1 { width: 240px; height: 240px; }
  .hero__blob--2 { width: 220px; height: 220px; }

  /* Botões do hero ocupam linha inteira no mobile */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  .hero__stats { gap: 16px; }
  .stat b { font-size: 30px; }
  .stat span { font-size: 13px; }

  /* Pílula rosa sem rotação no mobile (evita estouro horizontal) */
  .title-pill { transform: rotate(0); }

  /* Balões da seção verde mais discretos */
  .diff__balloon { font-size: 28px; opacity: 0.6; }
  .diff__balloon--1 { top: 4%; left: 2%; }
  .diff__balloon--2 { top: 6%; right: 3%; font-size: 26px; }
  .diff__balloon--3 { bottom: 6%; right: 4%; font-size: 24px; }

  /* CTA flutuante WhatsApp um pouco menor */
  .float-wa {
    width: 54px; height: 54px;
    bottom: 16px; right: 16px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav__inner { padding-top: 18px; padding-bottom: 18px; }
  .section,
  .cta { padding: 56px 0; }

  .nav__logo { font-size: 24px; }
  .nav__logo small { font-size: 10px; letter-spacing: 3px; }

  .hero__personagens { max-width: 280px; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery__placeholder { font-size: 14px; }
}

/* =============================================================
   REVEAL ANIMATIONS
============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   REDUCED MOTION
============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
