/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B6B;
  --primary-dark: #E85555;
  --secondary: #4ECDC4;
  --accent: #FFE66D;
  --purple: #A78BFA;
  --blue: #60A5FA;
  --orange: #FB923C;
  --pink: #F472B6;
  --dark: #2D3436;
  --gray: #636E72;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  line-height: 1.2;
}

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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,107,107,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(180px, 42vw);
  object-fit: contain;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--primary);
}

.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  color: var(--gray);
  margin-left: -4px;
  align-self: flex-end;
  margin-bottom: 4px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition);
}

.nav-link:hover {
  background: var(--primary);
  color: var(--white);
}

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

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: all var(--transition);
}

/* ========== Hero / Banner ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("FOTOS/WhatsApp%20Image%202026-05-18%20at%2017.27.20.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255, 107, 107, 0.94) 0%,
    rgba(255, 142, 142, 0.88) 28%,
    rgba(255, 180, 180, 0.78) 52%,
    rgba(255, 230, 109, 0.62) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 72px);
  padding: 48px 0 100px;
}

.hero-content {
  max-width: 640px;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-title .highlight {
  position: relative;
  color: var(--accent);
}

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: flex-start;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.5rem;
  }
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== Section Styles ========== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-desc a {
  color: var(--primary-dark);
  font-weight: 700;
}

.section-desc a:hover {
  text-decoration: underline;
}

/* ========== About ========== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.about-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== Espaços para festas ========== */
.espacos {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, var(--light) 100%);
}

.espacos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}

.espaco-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all var(--transition);
  height: 100%;
}

.espaco-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 107, 0.35);
}

.espaco-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.espaco-andar {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-dark);
}

.espaco-capacidade {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--light);
  padding: 4px 12px;
  border-radius: 999px;
}

.espaco-card h3,
.espaco-card h4 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.espaco-card h4 {
  font-size: 1.15rem;
}

.espaco-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 16px;
}

.espaco-card--superior {
  border-top: 4px solid var(--primary);
}

.espaco-card--quadro {
  border-top: 4px solid #3b82f6;
}

.espaco-card--lanchonete {
  border-top: 4px solid #f59e0b;
}

.espaco-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.espaco-tags li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 107, 0.12);
  color: var(--primary-dark);
}

.espacos-terreo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.espacos-terreo-header {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.espacos-terreo-header h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.espacos-terreo-header p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}

.espacos-terreo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.espacos-nota {
  text-align: center;
  margin-top: 36px;
  font-size: 0.95rem;
  color: var(--gray);
}

.espacos-nota a {
  color: var(--primary-dark);
  font-weight: 700;
}

.espacos-nota a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .espacos-layout {
    grid-template-columns: 1fr;
  }

  .espacos-terreo-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Gallery ========== */
.gallery {
  padding: 100px 0;
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 40px 24px 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ========== Parties Slider ========== */
.parties {
  padding: 100px 0;
  background: var(--white);
}

.party-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.party-tab {
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.party-tab:hover {
  background: #fff5f5;
}

.party-tab.active {
  background: var(--primary);
  color: var(--white);
}

.party-panel {
  display: none;
}

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

.party-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe8e8, #fff5d6);
}

.party-placeholder-icon {
  font-size: 4rem;
}

.party-card-placeholder .party-info p {
  margin-bottom: 20px;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  padding: 6px 4px;
  margin: -6px -4px;
  --party-card-width: 280px;
  --party-gap: 20px;
}

.slider-track {
  display: flex;
  gap: var(--party-gap);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.slider-track.dragging {
  cursor: grabbing;
  transition: none;
}

.party-card {
  flex: 0 0 var(--party-card-width);
  width: var(--party-card-width);
  max-width: var(--party-card-width);
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  flex-shrink: 0;
  border: 1px solid #ebebeb;
}

.party-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 107, 0.35);
}

.party-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.party-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.party-badge--placeholder {
  left: auto;
  right: 16px;
  background: #64748b;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.party-card-placeholder {
  border-style: dashed;
  border-color: #cbd5e1;
  cursor: default;
}

.party-card-placeholder:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.party-card-placeholder .party-card-cta {
  color: var(--gray);
  font-weight: 600;
}

.party-info {
  padding: 24px;
}

.party-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.party-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.party-features {
  margin-bottom: 20px;
}

.party-features li {
  font-size: 0.88rem;
  color: var(--dark);
  padding: 4px 0;
  font-weight: 600;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ========== Pricing ========== */
.pricing {
  padding: 100px 0;
  background: var(--light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.price-card-highlight {
  border-color: var(--primary);
  transform: scale(1.05);
}

.price-card-highlight:hover {
  transform: scale(1.05) translateY(-6px);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.price-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.price-value {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray);
}

.amount {
  font-family: 'Fredoka', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.period {
  font-size: 0.85rem;
  color: var(--gray);
}

.price-features {
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray);
  border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
  border: none;
}

/* ========== Why Us ========== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.why-item:hover {
  background: var(--light);
}

.why-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== CTA ========== */
.cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("FOTOS/FESTA-1-ANO.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.45) 0%,
    rgba(255, 142, 142, 0.38) 50%,
    rgba(168, 85, 247, 0.42) 100%
  );
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ========== Contact ========== */
.contact {
  padding: 100px 0;
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.contact-map iframe {
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
}

.map-link {
  text-align: center;
  padding: 12px;
  margin: 0;
  font-size: 0.9rem;
}

.map-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.map-link a:hover {
  text-decoration: underline;
}

.map-placeholder {
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  gap: 12px;
}

.map-placeholder span {
  font-size: 3rem;
}

.map-placeholder p {
  color: var(--gray);
}

/* ========== Footer ========== */
.footer {
  background: var(--dark);
  padding: 48px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer .logo-icon,
.footer .logo-text {
  color: var(--white);
}

.footer .logo-sub {
  color: rgba(255,255,255,0.5);
}

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 300px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    text-align: center;
    padding: 12px;
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
  }

  .gallery-item:nth-child(n + 7) {
    display: none;
  }

  .parties .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .parties .slider-wrapper {
    gap: 0;
  }

  .parties .slider {
    width: 100%;
    flex: 1 1 100%;
    padding: 8px 2px;
    margin: -8px -2px;
  }

  .parties .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .parties .slider-prev {
    left: 2px;
  }

  .parties .slider-next {
    right: 2px;
  }

  .parties .slider-btn:hover {
    transform: translateY(-50%) scale(1.05);
  }

  .parties .slider {
    --party-gap: 16px;
  }

  .party-info {
    padding: 18px 16px;
  }

  .party-info h3 {
    font-size: 1.15rem;
  }

  .party-features li {
    font-size: 0.85rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .price-card-highlight {
    transform: none;
  }

  .price-card-highlight:hover {
    transform: translateY(-6px);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

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

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

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

  .hero-stats {
    gap: 24px;
  }

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

  .parties .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .parties .slider-prev {
    left: 0;
  }

  .parties .slider-next {
    right: 0;
  }
}

/* ========== Festa detail pages ========== */
.festa-detail-page {
  background: var(--light);
}

.festa-detail-hero {
  position: relative;
  min-height: 340px;
  margin-top: 72px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.festa-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 107, 107, 0.94) 0%,
    rgba(255, 142, 142, 0.88) 40%,
    rgba(45, 52, 54, 0.55) 100%
  );
}

.festa-detail-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
  max-width: 720px;
}

.festa-back {
  display: inline-block;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-bottom: 20px;
  text-decoration: none;
}

.festa-back:hover {
  text-decoration: underline;
}

.festa-detail-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 12px;
}

.festa-detail-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.1rem;
  line-height: 1.6;
}

.festa-detail-body {
  padding: 56px 0 80px;
}

.festa-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.festa-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.festa-block-muted {
  background: #faf8f9;
  border: 1px dashed rgba(232, 62, 140, 0.2);
}

.festa-block h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.festa-block p,
.festa-list li {
  color: var(--gray);
  line-height: 1.7;
}

.festa-list {
  padding-left: 0;
  list-style: none;
}

.festa-list li {
  padding: 8px 0;
  padding-left: 1.25rem;
  position: relative;
}

.festa-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.festa-highlight {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--dark);
}

.festa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.festa-table th,
.festa-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.festa-table th {
  background: var(--light);
  font-weight: 700;
  color: var(--dark);
}

.festa-table td:last-child {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.festa-table--periods td:last-child {
  font-weight: 400;
  color: var(--gray);
  white-space: normal;
}

.party-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
}

.party-card-cta {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.party-card-link:hover .party-card-cta {
  text-decoration: underline;
}

.festa-reserva-form {
  margin-bottom: 12px;
}

.festa-field {
  margin-bottom: 16px;
}

.festa-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.festa-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.festa-field input:focus {
  outline: none;
  border-color: var(--primary);
}

.festa-field-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

.festa-reserva-form .btn-primary {
  margin-top: 4px;
}

.festa-reserva-step2 {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.festa-reserva-step2.is-visible {
  animation: festaStepIn 0.35s ease;
}

.festa-reserva-hint {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}

@keyframes festaStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.festa-exclusive {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, #fff5f5, #fff);
}

.festa-exclusive-note {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.festa-cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 2px solid #f0f0f0;
  position: sticky;
  top: 96px;
}

.festa-cta-card h3 {
  margin: 12px 0 8px;
  font-size: 1.25rem;
}

.festa-cta-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.festa-cta-card .btn {
  width: 100%;
  margin-bottom: 10px;
}

.festa-cta-secondary {
  border-color: var(--primary);
  color: var(--primary);
}

@media (max-width: 992px) {
  .festa-detail-layout {
    grid-template-columns: 1fr;
  }

  .festa-cta-card {
    position: static;
  }

  .festa-table {
    display: block;
    overflow-x: auto;
  }
}
