/* ============================================
   PULAKI FESTAS - Landing Page Styles
   Theme: Infantil / Festa / Colorido
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700;800;900&display=swap');

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  /* Primary Colors (from logo) */
  --blue: #2196F3;
  --blue-dark: #1565C0;
  --blue-light: #64B5F6;
  --orange: #FF9800;
  --orange-dark: #E65100;
  --green: #4CAF50;
  --green-light: #81C784;
  --yellow: #FFC107;
  --yellow-light: #FFE082;
  --purple: #9C27B0;
  --purple-light: #CE93D8;
  --red: #F44336;
  --red-light: #EF9A9A;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FF;
  --gray-light: #E8EAF6;
  --gray: #9E9E9E;
  --gray-dark: #424242;
  --dark: #1A237E;

  /* Gradients */
  --gradient-sky: linear-gradient(180deg, #87CEEB 0%, #B3E5FC 40%, #E1F5FE 70%, #FFFFFF 100%);
  --gradient-hero: linear-gradient(135deg, #2196F3 0%, #64B5F6 30%, #87CEEB 60%, #B3E5FC 100%);
  --gradient-fun: linear-gradient(135deg, #FF9800 0%, #FFC107 50%, #FFEB3B 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f0f4ff 100%);
  --gradient-footer: linear-gradient(180deg, #1A237E 0%, #0D47A1 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-colored: 0 8px 30px rgba(33, 150, 243, 0.3);
  --shadow-glow: 0 0 30px rgba(255, 193, 7, 0.4);

  /* Typography */
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --border-radius: 20px;
  --border-radius-lg: 30px;
  --border-radius-xl: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   FLOATING ELEMENTS & DECORATIONS
   ============================================ */
.floating-balloon {
  position: absolute;
  opacity: 0.6;
  animation: floatBalloon 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.floating-balloon:nth-child(2) {
  animation-delay: -1.5s;
  animation-duration: 7s;
}

.floating-balloon:nth-child(3) {
  animation-delay: -3s;
  animation-duration: 8s;
}

.floating-balloon:nth-child(4) {
  animation-delay: -4s;
  animation-duration: 5.5s;
}

.floating-balloon:nth-child(5) {
  animation-delay: -2s;
  animation-duration: 9s;
}

@keyframes floatBalloon {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.confetti-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.5;
  animation: confettiFall 8s linear infinite;
  pointer-events: none;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(calc(100vh)) rotate(720deg);
    opacity: 0;
  }
}

.star-sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  animation: sparkle 2s ease-in-out infinite;
}

.star-sparkle::before,
.star-sparkle::after {
  content: '';
  position: absolute;
  background: var(--yellow);
}

.star-sparkle::before {
  width: 4px;
  height: 20px;
  left: 8px;
  border-radius: 2px;
}

.star-sparkle::after {
  width: 20px;
  height: 4px;
  top: 8px;
  border-radius: 2px;
}

@keyframes sparkle {

  0%,
  100% {
    transform: scale(0.5) rotate(0deg);
    opacity: 0.3;
  }

  50% {
    transform: scale(1) rotate(45deg);
    opacity: 1;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  transition: height 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.navbar.scrolled .nav-logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

/* Active underline indicator for nav links */
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  border-radius: 3px;
  background: var(--yellow);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.nav-links a:not(.btn-nav):hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-links a:not(.btn-nav).active::after {
  transform: translateX(-50%) scaleX(1);
  background: var(--yellow);
}

.navbar.scrolled .nav-links a:not(.btn-nav).active::after {
  background: var(--blue);
}

.navbar.scrolled .nav-links a:not(.btn-nav).active {
  color: var(--blue);
}

.navbar.scrolled .nav-links a {
  color: var(--dark);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.navbar.scrolled .nav-links a:hover {
  background: rgba(33, 150, 243, 0.1);
  color: var(--blue);
}

.nav-links .btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.nav-links .btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-sky);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 80px;
}

/* Cloud decorations */
.cloud {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  opacity: 0.9;
  pointer-events: none;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.cloud-1 {
  width: 200px;
  height: 60px;
  top: 15%;
  left: -5%;
  animation: cloudFloat 25s linear infinite;
}

.cloud-1::before {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 30px;
}

.cloud-1::after {
  width: 100px;
  height: 100px;
  top: -50px;
  left: 80px;
}

.cloud-2 {
  width: 160px;
  height: 50px;
  top: 25%;
  right: 10%;
  animation: cloudFloat 30s linear infinite;
  animation-delay: -10s;
}

.cloud-2::before {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 25px;
}

.cloud-2::after {
  width: 80px;
  height: 80px;
  top: -40px;
  left: 60px;
}

.cloud-3 {
  width: 140px;
  height: 45px;
  top: 8%;
  left: 40%;
  animation: cloudFloat 35s linear infinite;
  animation-delay: -5s;
  opacity: 0.6;
}

.cloud-3::before {
  width: 50px;
  height: 50px;
  top: -25px;
  left: 20px;
}

.cloud-3::after {
  width: 70px;
  height: 70px;
  top: -35px;
  left: 50px;
}

.cloud-4 {
  width: 120px;
  height: 40px;
  bottom: 20%;
  left: 15%;
  animation: cloudFloat 28s linear infinite;
  animation-delay: -15s;
  opacity: 0.5;
}

.cloud-4::before {
  width: 45px;
  height: 45px;
  top: -22px;
  left: 15px;
}

.cloud-4::after {
  width: 60px;
  height: 60px;
  top: -30px;
  left: 45px;
}

@keyframes cloudFloat {
  0% {
    transform: translateX(-200px);
  }

  100% {
    transform: translateX(calc(100vw + 200px));
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text {
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .emoji {
  font-size: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title .highlight-blue {
  color: var(--blue-dark);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.hero-title .highlight-orange {
  color: var(--orange);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.hero-title .highlight-green {
  color: var(--green);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.hero-title .highlight-purple {
  color: var(--purple);
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 30px;
  max-width: 500px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 35px rgba(255, 152, 0, 0.5);
  background: var(--orange-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--blue-light);
}

.btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

/* Hero mascot side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-toys-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-toy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.hero-toy img {
  width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 35px rgba(33, 150, 243, 0.25), 0 0 0 8px rgba(255, 193, 7, 0.1);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.hero-toy:hover img {
  transform: scale(1.05);
}

.toy-label {
  position: absolute;
  bottom: -15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--blue-light);
  white-space: nowrap;
  pointer-events: none;
}

.toy-cama {
  animation: bounceToy1 4s ease-in-out infinite;
}

.toy-piscina {
  animation: bounceToy2 4.5s ease-in-out infinite;
}

@keyframes bounceToy1 {

  0%,
  100% {
    transform: translateY(-40px) rotate(-2deg);
  }

  50% {
    transform: translateY(-60px) rotate(2deg);
  }
}

@keyframes bounceToy2 {

  0%,
  100% {
    transform: translateY(40px) rotate(2deg);
  }

  50% {
    transform: translateY(60px) rotate(-2deg);
  }
}

/* Decorative circles behind mascot */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-circle-1 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-circle-2 {
  width: 250px;
  height: 250px;
  border: 4px dashed rgba(255, 152, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* SVG Balloons in hero */
.hero-balloons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.balloon-svg {
  position: absolute;
  animation: floatBalloon 6s ease-in-out infinite;
}

/* ============================================
   GALLERY MARQUEE
   ============================================ */
.gallery-marquee-section {
  background: var(--white);
  padding: 40px 0;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.gallery-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* subtle fade on edges to blend with background */
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marqueeScroll 30s linear infinite;
  padding: 10px 0; /* for shadow space */
}

.gallery-marquee-track:hover {
  animation-play-state: paused;
}

.gallery-img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  border: 4px solid var(--white);
}

.gallery-img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-md);
  z-index: 2;
  position: relative;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); } /* Scrolls exactly half the track including gap */
}

/* ============================================
   SECTION TITLES (Balloon style)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 15px;
}

.section-title span {
  position: relative;
  display: inline-block;
}

.section-title .color-blue {
  color: var(--blue);
}

.section-title .color-orange {
  color: var(--orange);
}

.section-title .color-green {
  color: var(--green);
}

.section-title .color-purple {
  color: var(--purple);
}

.section-title .color-yellow {
  color: var(--yellow);
}

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

/* Wavy section divider */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
  animation: mascotBounce 4s ease-in-out infinite;
}

.about-image-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--gray-dark);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature-icon.blue {
  background: rgba(33, 150, 243, 0.15);
}

.about-feature-icon.orange {
  background: rgba(255, 152, 0, 0.15);
}

.about-feature-icon.green {
  background: rgba(76, 175, 80, 0.15);
}

.about-feature-icon.purple {
  background: rgba(156, 39, 176, 0.15);
}

.about-feature span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

/* ============================================
   TOYS / BRINQUEDOS SECTION
   ============================================ */
.brinquedos {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.brinquedos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.brinquedo-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brinquedo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.brinquedo-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.brinquedo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.brinquedo-card:hover .brinquedo-card-image img {
  transform: scale(1.1);
}

.brinquedo-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

.brinquedo-card-content {
  padding: 25px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.brinquedo-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.brinquedo-card-content p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.brinquedo-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.brinquedo-card-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 15px;
  font-size: 0.95rem;
}

/* ============================================
   TOY MODAL
   ============================================ */
.toy-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.toy-modal.show {
  display: flex;
  opacity: 1;
}

.toy-modal-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.toy-modal.show .toy-modal-content {
  transform: scale(1);
}

.toy-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: var(--dark);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  background: var(--white);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}

.toy-modal-close:hover {
  color: var(--red);
}

.toy-modal-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.toy-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--dark);
  margin-top: 10px;
}

.toy-modal-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.toy-modal-desc {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.toy-modal-desc ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.toy-modal-btn {
  margin-top: 10px;
  justify-content: center;
}

.brinquedos-cta {
  text-align: center;
  margin-top: 50px;
}

.brinquedos-cta p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 15px;
}

/* Coming soon badge */
.coming-soon-wrapper {
  margin-top: 50px;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f5e9, #fff3e0);
  border: 2px dashed var(--green);
  padding: 20px 40px;
  border-radius: var(--border-radius);
  animation: pulseGlow 2s ease-in-out infinite;
}

.coming-soon-badge .emoji {
  font-size: 2rem;
}

.coming-soon-badge span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.3);
  }

  50% {
    box-shadow: 0 0 20px 5px rgba(76, 175, 80, 0.2);
  }
}

/* ============================================
   FEEDBACKS SECTION
   ============================================ */
.feedbacks {
  padding: var(--section-padding);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.feedbacks-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0 40px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.feedbacks-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: marqueeScrollFeedbacks 40s linear infinite;
  padding: 10px 0;
}

.feedbacks-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScrollFeedbacks {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12.5px)); }
}

.feedback-card {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px 25px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: center;
  border-left: 5px solid;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feedback-card:nth-child(5n+1) { border-left-color: var(--green); }
.feedback-card:nth-child(5n+2) { border-left-color: var(--orange); }
.feedback-card:nth-child(5n+3) { border-left-color: var(--blue-light); }
.feedback-card:nth-child(5n+4) { border-left-color: #E91E63; }
.feedback-card:nth-child(5n+5) { border-left-color: var(--green-light); }

.feedback-stars {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.feedback-text {
  font-size: 1.05rem;
  color: var(--gray-dark);
  font-style: italic;
  flex-grow: 1;
  line-height: 1.6;
}

.feedback-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-top: auto;
}

@media (max-width: 768px) {
  .feedback-card {
    flex: 0 0 280px;
    padding: 25px 20px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contato {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--white) 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contato-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--border-radius-lg);
  color: var(--white);
  box-shadow: var(--shadow-colored);
  position: relative;
  overflow: hidden;
}

.contato-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contato-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contato-info>p {
  opacity: 0.9;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.6;
}

.contato-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contato-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contato-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contato-detail-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contato-detail-text span {
  font-size: 0.9rem;
  opacity: 0.85;
}

.contato-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.contato-social a {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.contato-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.contato-social a:hover {
  transform: translateY(-3px) scale(1.1);
}

.contato-social a:hover svg {
  transform: scale(1.1);
}

/* Brand colors on hover */
.contato-social .social-instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contato-social .social-facebook:hover {
  background: #1877F2;
}

.contato-social .social-whatsapp:hover {
  background: #25D366;
}

/* Contact Form */
.contato-form {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contato-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-dark);
  background: var(--off-white);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.15);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 152, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 152, 0, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-footer);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
}

.footer-content {
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--orange);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-contact-item .icon {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.caviontech-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.caviontech-link:hover {
  color: var(--orange);
  text-decoration: underline;
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  transform: scale(1.1);
}

/* Brand colors on hover */
.footer-social .social-instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .social-facebook:hover {
  background: #1877F2;
}

.footer-social .social-whatsapp:hover {
  background: #25D366;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-toy img {
    width: 220px;
    height: auto;
  }

  .hero-toys-wrapper {
    gap: 20px;
  }

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

  .hero-subtitle {
    margin: 0 auto 30px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-wrapper img {
    max-width: 300px;
  }

  .contato-content {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 126, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--white) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .banner-slide img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .hero-toy img {
    width: 160px;
    height: auto;
    border-width: 4px;
  }

  .hero-toys-wrapper {
    gap: 15px;
  }

  .toy-label {
    font-size: 0.75rem;
    padding: 4px 10px;
    bottom: -10px;
  }

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

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .contato-form,
  .contato-info {
    padding: 25px;
  }
}

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

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

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0.1);
  }
}

/* ============================================
   RAINBOW BORDER DECORATION
   ============================================ */
.rainbow-border-top {
  height: 5px;
  background: linear-gradient(90deg,
      var(--blue) 0%,
      var(--green) 20%,
      var(--yellow) 40%,
      var(--orange) 60%,
      var(--red) 80%,
      var(--purple) 100%);
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.show {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 4px solid var(--white);
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.lightbox-close:hover {
  color: var(--yellow);
}

.lightbox-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 2rem;
  width: 60px;
  height: 60px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-btn:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

#lightbox-prev {
  left: -80px;
}

#lightbox-next {
  right: -80px;
}

@media (max-width: 768px) {
  #lightbox-prev { left: 10px; }
  #lightbox-next { right: 10px; }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}