/* Tamura Brinquedos - Design System Colorido e Divertido */
/* Versão Pure HTML/CSS/JS - Fiel ao design original do Lovable */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
  /* Cores principais da marca */
  --background: hsl(45, 100%, 98%);
  --foreground: hsl(220, 60%, 15%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 60%, 15%);

  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(220, 60%, 15%);

  /* Azul vibrante - cor principal */
  --primary: hsl(210, 100%, 50%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Laranja energético */
  --secondary: hsl(30, 100%, 55%);
  --secondary-foreground: hsl(0, 0%, 100%);

  /* Verde alegre */
  --accent: hsl(145, 70%, 45%);
  --accent-foreground: hsl(0, 0%, 100%);

  /* Rosa divertido */
  --pink: hsl(330, 85%, 60%);
  --pink-foreground: hsl(0, 0%, 100%);

  /* Azul escuro */
  --navy: hsl(220, 70%, 25%);
  --navy-foreground: hsl(0, 0%, 100%);

  --muted: hsl(45, 30%, 92%);
  --muted-foreground: hsl(220, 30%, 40%);

  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 100%);

  --border: hsl(210, 30%, 85%);
  --input: hsl(210, 30%, 85%);
  --ring: hsl(210, 100%, 50%);

  --radius: 1rem;

  /* Gradientes festivos */
  --gradient-hero: linear-gradient(135deg, hsl(210, 100%, 50%) 0%, hsl(220, 70%, 25%) 100%);
  --gradient-fun: linear-gradient(135deg, hsl(30, 100%, 55%) 0%, hsl(330, 85%, 60%) 100%);
  --gradient-nature: linear-gradient(135deg, hsl(145, 70%, 45%) 0%, hsl(210, 100%, 50%) 100%);

  /* Sombras divertidas */
  --shadow-playful: 0 10px 40px -10px hsla(210, 100%, 50%, 0.3);
  --shadow-card: 0 8px 30px -5px hsla(220, 60%, 15%, 0.15);
  --shadow-hover: 0 20px 50px -10px hsla(210, 100%, 50%, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ============================================
   Utility Classes
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

.gradient-hero {
  background: var(--gradient-hero);
}

.gradient-fun {
  background: var(--gradient-fun);
}

.gradient-nature {
  background: var(--gradient-nature);
}

.shadow-playful {
  box-shadow: var(--shadow-playful);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}

.text-gradient-fun {
  background: var(--gradient-fun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-hero {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Animações
   ============================================ */
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

@keyframes wiggle {
  0%, 100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

@keyframes party-popper {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(15deg);
  }
}

@keyframes scale-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 3s ease-in-out infinite;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 0.5s ease-in-out infinite;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-playful);
}

.btn-primary:hover {
  background-color: hsla(210, 100%, 50%, 0.9);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-playful);
}

.btn-secondary:hover {
  background-color: hsla(30, 100%, 55%, 0.9);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

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

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

.btn-outline-white {
  border: 2px solid hsla(0, 0%, 100%, 0.5);
  background-color: transparent;
  color: var(--primary-foreground);
}

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

.btn-whatsapp {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-playful);
}

.btn-whatsapp:hover {
  background-color: hsla(145, 70%, 45%, 0.9);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.btn-fun {
  background: var(--gradient-fun);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-playful);
}

.btn-fun:hover {
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

.btn-pink {
  background-color: var(--pink);
  color: var(--pink-foreground);
  box-shadow: var(--shadow-playful);
}

.btn-pink:hover {
  background-color: hsla(330, 85%, 60%, 0.9);
  box-shadow: var(--shadow-hover);
  transform: scale(1.05);
}

/* Button Sizes */
.btn-sm {
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.btn-md {
  height: 3rem;
  padding: 0.75rem 1.5rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1.125rem;
}

.btn-xl {
  height: 4rem;
  padding: 0 2.5rem;
  font-size: 1.25rem;
}

.btn-xl svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__logo img {
  height: 3rem;
  width: auto;
  border-radius: 0.5rem;
}

.header__logo-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  display: none;
}

@media (min-width: 640px) {
  .header__logo-text {
    display: block;
  }
}

.header__nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }
}

.header__nav-link {
  font-weight: 500;
  color: hsla(220, 60%, 15%, 0.8);
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: hsla(330, 85%, 60%, 0.1);
  color: var(--pink);
  transition: all 0.3s ease;
}

.header__social-btn:hover {
  background-color: var(--pink);
  color: var(--pink-foreground);
}

.header__social-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header__whatsapp-text {
  display: none;
}

@media (min-width: 640px) {
  .header__whatsapp-text {
    display: inline;
  }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero__decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: hsla(30, 100%, 55%, 0.3);
  animation: float 4s ease-in-out infinite;
}

.hero__circle--2 {
  top: 10rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background-color: hsla(330, 85%, 60%, 0.3);
  animation: float-reverse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero__circle--3 {
  bottom: 10rem;
  left: 25%;
  width: 3rem;
  height: 3rem;
  background-color: hsla(145, 70%, 45%, 0.3);
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 1s;
}

.hero__circle--4 {
  bottom: 15rem;
  right: 33%;
  width: 6rem;
  height: 6rem;
  background-color: hsla(30, 100%, 55%, 0.2);
  animation: scale-pulse 5s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(30, 100%, 55%, 0.2);
  backdrop-filter: blur(4px);
  color: var(--secondary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.hero__badge svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

@media (min-width: 640px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 4.5rem;
  }
}

.hero__title-highlight {
  position: relative;
  display: inline;
}

.hero__party-icon {
  position: absolute;
  top: -0.5rem;
  right: -2rem;
  color: var(--secondary);
  animation: party-popper 1s ease-in-out infinite;
}

.hero__party-icon svg {
  width: 2rem;
  height: 2rem;
}

.hero__description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2.5rem;
  max-width: 42rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

@media (min-width: 640px) {
  .hero__description {
    font-size: 1.25rem;
  }
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.3s;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

.hero__stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  color: var(--primary-foreground);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.5s;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .hero__stat-number {
    font-size: 2.25rem;
  }
}

.hero__stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: auto;
}

/* ============================================
   Toys Section
   ============================================ */
.toys-section {
  padding: 5rem 0;
  background-color: var(--background);
}

.toys-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.toys-section__badge {
  display: inline-block;
  background-color: hsla(30, 100%, 55%, 0.2);
  color: var(--secondary);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.toys-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .toys-section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .toys-section__title {
    font-size: 3rem;
  }
}

.toys-section__subtitle {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.toys-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .toys-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .toys-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   Toy Card
   ============================================ */
.toy-card {
  background-color: var(--card);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.toy-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.toy-card:hover {
  box-shadow: var(--shadow-hover);
}

.toy-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.toy-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.toy-card:hover .toy-card__image {
  transform: scale(1.1);
}

.toy-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(220, 70%, 25%, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toy-card:hover .toy-card__overlay {
  opacity: 1;
}

.toy-card__content {
  padding: 1.5rem;
}

.toy-card__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.toy-card__description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.toy-card__dimensions {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.toy-card .btn {
  width: 100%;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 5rem 0;
  background-color: hsla(45, 30%, 92%, 0.5);
}

.about-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-section__badge {
  display: inline-block;
  background-color: hsla(145, 70%, 45%, 0.2);
  color: var(--accent);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .about-section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .about-section__title {
    font-size: 3rem;
  }
}

.about-section__subtitle {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .about-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-section__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   Feature Card
   ============================================ */
.feature-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
}

.feature-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
}

.feature-card__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.feature-card__icon--primary {
  background-color: var(--primary);
}

.feature-card__icon--secondary {
  background-color: var(--secondary);
}

.feature-card__icon--accent {
  background-color: var(--accent);
}

.feature-card__icon--pink {
  background-color: var(--pink);
}

.feature-card__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-card__description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
  padding: 3rem 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .contact-section {
    padding: 5rem 0;
  }
}

.contact-section__decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: none;
}

@media (min-width: 768px) {
  .contact-section__decorations {
    display: block;
  }
}

.contact-section__circle {
  position: absolute;
  border-radius: 50%;
}

.contact-section__circle--1 {
  top: 5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: hsla(30, 100%, 55%, 0.2);
  animation: float 4s ease-in-out infinite;
}

.contact-section__circle--2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  background-color: hsla(330, 85%, 60%, 0.2);
  animation: float-reverse 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.contact-section__content {
  position: relative;
  z-index: 10;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .contact-section__header {
    margin-bottom: 3rem;
    padding: 0;
  }
}

.contact-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 480px) {
  .contact-section__title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 640px) {
  .contact-section__title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .contact-section__title {
    font-size: 3rem;
  }
}

.contact-section__subtitle {
  color: hsla(0, 0%, 100%, 0.8);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (min-width: 480px) {
  .contact-section__subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .contact-section__subtitle {
    font-size: 1.125rem;
  }
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .contact-section__grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-section__info {
  background-color: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.25rem;
  opacity: 0;
  transform: translateX(-30px);
}

@media (min-width: 480px) {
  .contact-section__info {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

@media (min-width: 640px) {
  .contact-section__info {
    padding: 2rem;
  }
}

.contact-section__info.visible {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.5s ease;
}

.contact-section__info-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .contact-section__info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.contact-section__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .contact-section__links {
    gap: 1rem;
  }
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease;
}

@media (min-width: 480px) {
  .contact-link {
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
  }
}

.contact-link--whatsapp {
  background-color: hsla(145, 70%, 45%, 0.2);
}

.contact-link--whatsapp:hover {
  background-color: hsla(145, 70%, 45%, 0.3);
}

.contact-link--email {
  background-color: hsla(30, 100%, 55%, 0.2);
}

.contact-link--email:hover {
  background-color: hsla(30, 100%, 55%, 0.3);
}

.contact-link--instagram {
  background-color: hsla(330, 85%, 60%, 0.2);
}

.contact-link--instagram:hover {
  background-color: hsla(330, 85%, 60%, 0.3);
}

.contact-link--location {
  background-color: hsla(210, 100%, 50%, 0.2);
}

.contact-link__icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

@media (min-width: 480px) {
  .contact-link__icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 0.75rem;
  }
}

.contact-link:hover .contact-link__icon {
  transform: scale(1.1);
}

.contact-link__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

@media (min-width: 480px) {
  .contact-link__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.contact-link__icon--whatsapp {
  background-color: var(--accent);
}

.contact-link__icon--email {
  background-color: var(--secondary);
}

.contact-link__icon--instagram {
  background-color: var(--pink);
}

.contact-link__icon--location {
  background-color: var(--primary);
}

.contact-link__text {
  display: flex;
  flex-direction: column;
}

.contact-link__label {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.7);
}

@media (min-width: 480px) {
  .contact-link__label {
    font-size: 0.875rem;
  }
}

.contact-link__value {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-foreground);
  word-break: break-word;
}

@media (min-width: 480px) {
  .contact-link__value {
    font-size: 1rem;
  }
}

.contact-section__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  width: 100%;
}

@media (min-width: 1024px) {
  .contact-section__cta {
    transform: translateX(30px);
  }
}

.contact-section__cta.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

@media (min-width: 1024px) {
  .contact-section__cta.visible {
    transform: translateX(0);
  }
}

.contact-section__cta-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-hover);
  width: 100%;
}

@media (min-width: 480px) {
  .contact-section__cta-card {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

.contact-section__cta-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

@media (min-width: 480px) {
  .contact-section__cta-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.contact-section__cta-text {
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

@media (min-width: 480px) {
  .contact-section__cta-text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.contact-section__cta .btn {
  width: 100%;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--navy);
  padding: 3rem 0;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__logo {
  height: 3rem;
  width: auto;
  border-radius: 0.5rem;
}

.footer__brand-info {
  display: flex;
  flex-direction: column;
}

.footer__brand-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy-foreground);
}

.footer__brand-tagline {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.7);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer__social-link:hover {
  transform: scale(1.1);
}

.footer__social-link svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.footer__social-link--whatsapp {
  background-color: var(--accent);
}

.footer__social-link--email {
  background-color: var(--secondary);
}

.footer__social-link--instagram {
  background-color: var(--pink);
}

.footer__divider {
  border: none;
  border-top: 1px solid hsla(0, 0%, 100%, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.6);
}

/* ============================================
   Scroll Animation Classes
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Animation delays for staggered effects */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }
