:root {
  /* Refined Pastel Palette */
  --brand-pink: #f7b2c7; /* Pastel pink */
  --brand-pink-dark: #b8234c; /* Darker pink for WCAG AA accessible contrast */
  --brand-brown: #4a2820; /* High-contrast Chocolate brown */
  --brand-brown-dark: #2c1612; /* Darker chocolate */
  
  --bg-light: #fffdfa; /* Creamy off-white */
  --bg-gray: #fbf6f2; /* Warm light gray/cream for sections */
  --bg-cream: #fff5e1; /* Vanilla cream */
  
  --text-main: #2b2b2b; /* Crisp accessible dark text */
  --text-muted: #595552; /* WCAG AA accessible muted text */
  
  --hero-bg-1: #ffe4e1; /* Misty rose gradient start */
  --hero-bg-2: #fff0f5; /* Lavender blush end */
  
  --card-bg: #ffffff; /* Default card background */
  
  --accent-color: #fcd581; /* Pastel yellow accent */
  --accent-color-hover: #fbc050;
  
  --shadow-lg: 0 20px 40px rgba(93, 64, 55, 0.08);
  --shadow-md: 0 10px 25px rgba(93, 64, 55, 0.06);
  --shadow-sm: 0 5px 15px rgba(93, 64, 55, 0.04);
}

[data-theme="dark"] {
  --bg-light: #1f1b1a; /* Dark espresso background */
  --bg-gray: #2c2523; /* Slightly lighter dark brown */
  --bg-cream: #3a2e2a; 
  --text-main: #fbf6f2; /* Light cream text */
  --text-muted: #d4c5bd; 
  --card-bg: #2c2523;
  --brand-brown: #f7b2c7; /* Swap brown with pink for dark mode contrast */
  --brand-brown-dark: #ffe4e1;
  --brand-pink: #5d4037; /* Buttons become dark brown */
  --brand-pink-dark: #3e2723;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body { 
  font-family: 'Poppins', sans-serif; 
  color: var(--text-main); 
  background-color: var(--bg-light); 
  /* Subtle CSS Pattern for whole body */
  background-image: radial-gradient(var(--brand-pink) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: 0 0;
  overflow-x: hidden;
}
[data-theme="dark"] body {
  background-image: radial-gradient(rgba(247, 178, 199, 0.1) 1px, transparent 1px);
}

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

/* PREMIUM PRELOADER */
#preloader.premium-loader {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; justify-content: center; align-items: center;
  overflow: hidden; background: #1a1a1a;
  transition: opacity 0.8s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.8s;
}
#preloader.premium-loader.loaded {
  opacity: 0; visibility: hidden; pointer-events: none;
}
#preloader.premium-loader.loaded .loader-glass {
  transform: scale(1.1); opacity: 0;
}
.loader-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(-45deg, var(--bg-light), var(--brand-pink-dark), var(--bg-cream), #ffb2d0);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.loader-floating-figures {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none;
}
.loader-shape {
  position: absolute; opacity: 0.6;
  animation: floatShape 8s ease-in-out infinite alternate;
}
.shape-circle {
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand-pink);
  top: 15%; left: 10%; animation-duration: 9s; filter: blur(3px);
}
.shape-star {
  width: 0; height: 0; border-left: 20px solid transparent; border-right: 20px solid transparent; border-bottom: 35px solid rgba(255,255,255,0.8);
  top: 70%; left: 15%; animation-duration: 7s; transform: rotate(20deg); filter: blur(2px);
}
.shape-square {
  width: 30px; height: 30px; background: var(--brand-brown); border-radius: 5px;
  top: 20%; right: 15%; animation-duration: 10s; transform: rotate(45deg); filter: blur(4px);
}
.shape-circle-sm {
  width: 20px; height: 20px; border-radius: 50%; background: #FFD700;
  top: 80%; right: 20%; animation-duration: 6s; filter: blur(1px);
}
.shape-star-sm {
  width: 30px; height: 30px; background: var(--brand-pink-dark);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 40%; left: 80%; animation-duration: 8s;
}
.shape-drop {
  width: 25px; height: 25px; background: white; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  top: 60%; left: 5%; animation-duration: 11s;
}
@keyframes floatShape {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(-40px) scale(1.1) rotate(20deg); }
}
.loader-glass {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  padding: 50px; border-radius: 40px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.8);
  transition: all 0.8s ease;
  overflow: visible;
}
.falling-icecream-wrapper {
  position: absolute;
  top: -160px; /* Starts slightly above the glass card */
  animation: fallFromSky 1.5s cubic-bezier(0.28, 0.84, 0.42, 1) forwards, floatAfterFall 3s ease-in-out infinite 1.5s;
  z-index: 10;
}
@keyframes fallFromSky {
  0% { transform: translateY(-800px) rotate(20deg); opacity: 0; }
  60% { transform: translateY(10px) rotate(-5deg); opacity: 1; }
  80% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}
@keyframes floatAfterFall {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.logo-spinner-container {
  position: relative;
  width: 170px; height: 170px;
  display: flex; justify-content: center; align-items: center;
  margin-top: 40px; margin-bottom: 20px;
}
.loader-logo-premium { width: 120px; position: relative; z-index: 5; animation: pulseLogo 2s infinite; }
.loader-spinner {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
  animation: spinLoader 2.5s linear infinite;
}
.spinner-circle-fill {
  animation: strokeFill 2.5s ease-in-out infinite alternate;
  stroke-linecap: round;
}
@keyframes spinLoader { 100% { transform: rotate(360deg); } }
@keyframes strokeFill {
  0% { stroke-dashoffset: 283; }
  100% { stroke-dashoffset: 0; }
}
.loader-text-liquid {
  font-family: 'Fredoka', sans-serif; font-size: 1.15rem; font-weight: 700; letter-spacing: 3px;
  background: linear-gradient(to right, var(--brand-brown), var(--brand-pink-dark), var(--brand-brown));
  background-size: 200% auto;
  color: transparent; -webkit-background-clip: text; background-clip: text;
  animation: shineText 2.5s linear infinite; margin-top: 10px;
}
@keyframes shineText { to { background-position: 200% center; } }

h1, h2, h3, h4, h5 { 
  font-family: 'Fredoka', sans-serif; 
  color: var(--brand-brown); 
  font-weight: 600; 
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* =========================================
   TOP BAR PROMO
   ========================================= */
.tf-top-bar {
  background: var(--brand-brown);
  color: var(--bg-cream);
  text-align: center;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 1002;
  position: relative;
  font-family: 'Poppins', sans-serif;
}
.tf-top-bar a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  margin-left: 8px;
  transition: color 0.3s;
}
.tf-top-bar a:hover { color: #fff; text-decoration: underline; }
.tf-top-bar strong { color: var(--accent-color); }

/* =========================================
   HEADER STICKY
   ========================================= */
.tf-header {
  position: sticky; 
  top: 0;
  width: 100%; 
  z-index: 1000; 
  background: rgba(255, 253, 250, 0.85); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0; 
  border-bottom: 1px solid rgba(93, 64, 55, 0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.tf-header-container { display: flex; justify-content: space-between; align-items: center; max-width: 1300px; margin: 0 auto; padding: 0 20px; }
.tf-logo img { height: 60px; object-fit: contain; transition: transform 0.3s;}
.tf-logo:hover img { transform: scale(1.05); }

.tf-nav-links { display: flex; align-items: center; gap: 30px; margin: 0 auto;}
.tf-nav-links a { text-decoration: none; color: var(--text-main); font-family: 'Fredoka', sans-serif; font-weight: 500; font-size: 1.1rem; position: relative; padding: 5px 0; transition: color 0.3s;}
.tf-nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 3px; background: var(--brand-pink); transition: width 0.3s; border-radius: 2px;
}
.tf-nav-links a:hover { color: var(--brand-brown); }
.tf-nav-links a:hover::after, .tf-nav-links a.active::after { width: 100%; }

.tf-btn-pedido { 
  background: var(--brand-pink); 
  color: var(--brand-brown-dark); 
  text-decoration: none; 
  font-family: 'Fredoka', sans-serif; 
  font-weight: 600;
  font-size: 1.1rem; 
  padding: 10px 25px; 
  border-radius: 50px; 
  text-align: center; 
  display: inline-block;
  box-shadow: 0 4px 15px rgba(247, 178, 199, 0.4);
  transition: all 0.3s ease;
}
.tf-btn-pedido:hover { 
  transform: translateY(-2px); 
  background: var(--brand-pink-dark);
  box-shadow: 0 6px 20px rgba(247, 178, 199, 0.6);
}

/* =========================================
   MODERN APPETITE-FORWARD HERO
   ========================================= */
.tf-hero {
  padding: 180px 5% 150px 5%; /* Extra bottom padding for wave */
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 85vh;
  contain: layout style;
}

/* BLOB GRADIENTS EN EL HERO PARA MAS COLOR */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: blobFloat 10s infinite alternate;
}
.blob-1 {
  width: 400px; height: 400px;
  background: var(--brand-pink);
  top: -100px; left: -100px;
  opacity: 0.5;
}
.blob-2 {
  width: 500px; height: 500px;
  background: var(--accent-color);
  bottom: -200px; right: -100px;
  opacity: 0.4;
  animation-delay: 2s;
}
@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

/* VIDEO BACKGROUND */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -2;
  object-fit: cover;
  opacity: 0.3; /* Subtle background */
}
[data-theme="dark"] .hero-video-bg {
  opacity: 0.15;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--hero-bg-1) 0%, var(--hero-bg-2) 100%);
  opacity: 0.85; /* Blend with video */
  z-index: -1;
}
[data-theme="dark"] .video-overlay {
  background: linear-gradient(135deg, #1f1b1a 0%, #2c2523 100%);
  opacity: 0.9;
}

.tf-hero-content {
  max-width: 1250px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 10; width: 100%;
}

.tf-hero-text { flex: 1; max-width: 550px; position: relative; z-index: 5;}

.hero-badge {
  display: inline-block;
  background: white;
  color: var(--brand-pink-dark);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: var(--brand-brown);
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--brand-pink-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 15px; }

.btn-primary {
  background: var(--brand-brown);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(93, 64, 55, 0.2);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(93, 64, 55, 0.3); background: var(--brand-brown-dark);}

.btn-secondary {
  background: white;
  color: var(--brand-brown);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--brand-pink-dark);}


.tf-hero-images { flex: 1; display: flex; justify-content: flex-end; align-items: center; position: relative;}
.hero-image-wrapper { position: relative; width: 100%; max-width: 500px; display: flex; justify-content: center;}

.main-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 15px solid white;
  box-shadow: var(--shadow-lg);
  animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-tag {
  position: absolute;
  background: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--brand-brown);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
}
.tag-left { bottom: 10%; left: -20px; animation: floatImg 5s ease-in-out infinite 1s; }

/* FUN ICE CREAM NOISE (Floating Emojis) */
.fun-noise {
  position: absolute;
  font-size: 2.5rem;
  z-index: 1;
  opacity: 0.8;
  animation: floatNoise 8s ease-in-out infinite;
}
@keyframes floatNoise {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(15deg); }
}
.n-1 { top: 15%; left: 10%; font-size: 3rem; animation-delay: 0s; }
.n-2 { bottom: 20%; left: 45%; animation-delay: 1.5s; font-size: 2.2rem; }
.n-3 { top: 30%; right: 5%; animation-delay: 3s; font-size: 3.5rem; opacity: 0.5;}
.n-4 { bottom: 15%; right: 45%; animation-delay: 2s; font-size: 2.5rem; transform: rotate(-20deg); }
.n-5 { top: 40%; left: 5%; animation-delay: 4s; font-size: 2rem; transform: rotate(15deg); }

/* HERO DRIP DIVIDER */
.hero-drip {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}
.hero-drip svg {
  width: calc(100% + 2px);
  height: 90px;
  display: block;
}

/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section { padding: 80px 5%; position: relative; }
.section-title { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.section-title h2 { font-family: 'Fredoka', sans-serif; font-size: 2.8rem; color: var(--brand-brown); margin-bottom: 10px;}
.section-title .section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* DECORATIVE BACKGROUNDS */
.bg-gray { 
  background-color: var(--bg-gray); 
  background-image: url('../img/textura_helado.webp');
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: overlay;
}
.bg-cream { background-color: var(--bg-cream); }
.bg-sprinkles { 
  background-color: var(--bg-light); 
  background-image: radial-gradient(var(--accent-color) 2px, transparent 2px), 
                    radial-gradient(var(--brand-pink) 2px, transparent 2px);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  position: relative;
}

[data-theme="dark"] .bg-gray {
  background-blend-mode: multiply;
  opacity: 0.95;
}

/* SHAPE DIVIDERS (WAVES) */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}
.custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-light);
}
.fill-gray .shape-fill { fill: var(--bg-gray); }
.fill-cream .shape-fill { fill: var(--bg-cream); }

[data-theme="dark"] .custom-shape-divider-bottom .shape-fill {
    fill: var(--bg-light); /* En modo oscuro --bg-light es oscuro */
}
[data-theme="dark"] .fill-gray .shape-fill { fill: var(--bg-gray); }
[data-theme="dark"] .fill-cream .shape-fill { fill: var(--bg-cream); }

/* FLOATING DECO ELEMENTS */
.floating-deco {
  position: absolute;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: floatDeco 6s ease-in-out infinite alternate;
}
@keyframes floatDeco {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(15deg); }
}

/* NUESTRAS LINEAS - ARCHED STYLE */
.lines-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.line-card { 
  display: flex; flex-direction: column; text-decoration: none; 
  border-radius: 120px 120px 30px 30px; /* Arched top */
  overflow: hidden; background: var(--card-bg);
  box-shadow: var(--shadow-sm); transition: all 0.4s ease; 
  text-align: center; border: 1px solid rgba(0,0,0,0.03);
}
.line-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-lg); }

/* Playful ice cream flavors backgrounds */
.line-card:nth-child(1) .img-wrapper { background-color: #fff0f5; /* Fresa */ }
.line-card:nth-child(2) .img-wrapper { background-color: #e0f7fa; /* Menta */ }
.line-card:nth-child(3) .img-wrapper { background-color: #fff9c4; /* Vainilla */ }
.line-card:nth-child(4) .img-wrapper { background-color: #f3e5f5; /* Mora */ }

[data-theme="dark"] .line-card:nth-child(1) .img-wrapper { background-color: #4a2a35; }
[data-theme="dark"] .line-card:nth-child(2) .img-wrapper { background-color: #244144; }
[data-theme="dark"] .line-card:nth-child(3) .img-wrapper { background-color: #4a4731; }
[data-theme="dark"] .line-card:nth-child(4) .img-wrapper { background-color: #413642; }

.img-wrapper { 
  height: 240px; overflow: hidden; 
  border-radius: 120px 120px 0 0;
  margin: 10px 10px 0 10px;
}
.img-wrapper img { 
  width: 100%; height: 100%; object-fit: cover; 
  transition: transform 0.6s ease; 
  border-radius: 110px 110px 0 0;
}
.line-card:hover .img-wrapper img { transform: scale(1.08); }

.line-info { padding: 25px 20px 30px 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: center;}
.line-info h3 { font-size: 1.6rem; margin-bottom: 8px; color: var(--brand-brown); }
.line-info p { color: var(--brand-brown-dark); font-size: 0.95rem; opacity: 0.8; line-height: 1.4;}

/* DESTACADOS - MARQUEE INFINITO */
.products-marquee { 
  overflow: hidden; 
  padding: 20px 0 60px 0;
  width: 100%;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* Animar todo el track hacia la izquierda. 
     Dado que tenemos 12 items (6 duplicados), moveremos exactamente el 50% del ancho total del track + la mitad del gap */
  animation: scrollMarquee 40s linear infinite;
  padding-left: 20px;
}

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

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  /* Se desplaza el 50% exacto para que el bucle sea perfecto */
  100% { transform: translateX(calc(-50% - 15px)); }
}

/* ESTILOS DE FILTRO */
.filter-buttons {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 30px;
}
.filter-btn {
  background: white; border: 2px solid var(--bg-cream); color: var(--brand-brown-dark);
  padding: 8px 20px; border-radius: 30px; font-family: 'Fredoka', sans-serif; font-weight: 500;
  cursor: pointer; transition: all 0.3s ease;
}
.filter-btn:hover { background: var(--bg-cream); }
.filter-btn.active {
  background: var(--brand-pink-dark); color: white; border-color: var(--brand-pink-dark);
}
.products-marquee.filtered .marquee-track {
  animation: none !important;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  transform: none !important;
}
.products-marquee.filtered .duplicate-card { display: none !important; }
.hide-card { display: none !important; }

.premium-card {
  flex: 0 0 320px; /* Fixed width for cards */
  background: var(--card-bg); 
  border-radius: 30px; 
  padding: 20px;
  box-shadow: var(--shadow-sm); 
  transition: all 0.4s ease; 
  position: relative; 
  text-decoration: none; 
  display: flex; 
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.03);
}
.premium-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg); 
  border-color: var(--brand-pink);
}
.premium-img { 
  width: 100%; 
  height: 240px; 
  border-radius: 20px;
  overflow: hidden; 
  margin-bottom: 20px;
  background: var(--bg-cream);
  display: flex;
  justify-content: center;
  align-items: center;
}
.premium-img img { 
  width: 90%; 
  height: 90%; 
  object-fit: contain; 
  transition: transform 0.6s ease;
  border-radius: 10px;
}
.premium-card:hover .premium-img img { transform: scale(1.08); }

.premium-info { display: flex; flex-direction: column; flex-grow: 1; padding: 0 5px;}
.premium-tag { 
  font-size: 0.8rem; 
  color: var(--brand-brown-dark); 
  background: var(--accent-color);
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  align-self: flex-start;
  font-weight: 600;
  margin-bottom: 12px;
}
.premium-title { font-size: 1.5rem; color: var(--brand-brown); margin-bottom: 20px; line-height: 1.2;}

.premium-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto;}
.premium-price { font-size: 1.6rem; font-weight: 600; color: var(--brand-pink-dark); font-family: 'Fredoka', sans-serif;}
.premium-btn { 
  background: var(--brand-brown); 
  color: white; 
  padding: 8px 20px; 
  border-radius: 50px; 
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s;
}
.premium-card:hover .premium-btn { background: var(--brand-pink); color: var(--brand-brown-dark); }

/* SABORES (CREATIVE MARQUEE) */
.flavors-section { background: white; }
.flavors-marquee {
  overflow: hidden;
  width: 100%;
  padding-top: 20px;
  position: relative;
}
.flavors-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: flavorsScroll 30s linear infinite;
  padding: 10px 0 30px 0;
}
@keyframes flavorsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-33.333333% - 13.33px)); } /* 1/3 of the track width including gap offset */
}
.flavor-card { 
  display: flex; flex-direction: column; align-items: center; 
  width: 140px; cursor: pointer;
}
.flavor-img-wrapper {
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  position: relative;
}
.flavor-img-wrapper img {
  width: 85%; height: 85%; object-fit: contain;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,0.15));
}
.flavor-card:hover .flavor-img-wrapper {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.flavor-card:hover .flavor-img-wrapper img {
  transform: scale(1.2) rotate(8deg);
}
.flavor-card h3 {
  margin-top: 15px; font-family: 'Fredoka', sans-serif; color: var(--text-main); font-size: 1.1rem; text-align: center;
}
[data-theme="dark"] .flavors-section { background: var(--bg-gray); }

/* PROMO BANNER */
.promo-banner-section {
  padding: 20px 0 80px 0;
}
.promo-banner-link {
  display: block;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform 0.4s ease;
}
.promo-banner-link:hover {
  transform: translateY(-10px);
}
.promo-banner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(93, 64, 55, 0.85) 0%, rgba(93, 64, 55, 0.3) 100%);
  display: flex;
  align-items: center;
  padding: 50px;
}
.promo-text-content {
  max-width: 500px;
}
.promo-text-content h3 {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.promo-text-content h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.promo-btn {
  display: inline-block;
  background: var(--brand-pink);
  color: var(--brand-brown-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
}
.promo-banner-link:hover .promo-btn {
  background: var(--accent-color);
  transform: scale(1.05);
  z-index: 1000;
}

/* TESTIMONIOS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;}
.testimonial-card {
  background: white; padding: 40px 30px; border-radius: 24px; box-shadow: var(--shadow-sm); text-align: center; transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: var(--accent-color); font-size: 1.5rem; letter-spacing: 3px; margin-bottom: 20px; }
.t-text { font-style: italic; color: var(--text-main); font-size: 1.1rem; margin-bottom: 25px; line-height: 1.6;}
.t-author { font-weight: 600; color: var(--brand-brown-dark); font-family: 'Fredoka', sans-serif; font-size: 1.1rem;}

/* CLUB NAO */
.club-nao-section { background: var(--bg-cream); }
.club-nao-box { background: white; border-radius: 30px; padding: 50px; display: flex; align-items: center; justify-content: space-between; max-width: 1000px; margin: 0 auto; box-shadow: var(--shadow-lg);}
.club-text { flex: 1; margin-right: 40px; }
.club-text h2 { font-size: 2.2rem; color: var(--brand-brown); margin-bottom: 10px;}
.club-text p { color: var(--text-muted); font-size: 1.1rem; }
.club-form { display: flex; flex: 1; gap: 15px;}
.club-input { flex: 1; padding: 15px 20px; border-radius: 50px; border: 1px solid rgba(0,0,0,0.1); font-size: 1rem; font-family: 'Poppins', sans-serif;}
.club-input:focus { outline: none; border-color: var(--brand-pink); }
.club-btn { background: var(--brand-brown); color: white; padding: 15px 30px; border-radius: 50px; border: none; font-weight: 600; cursor: pointer; transition: background 0.3s;}
.club-btn:hover { background: var(--brand-brown-dark); }

[data-theme="dark"] .club-nao-box { background: var(--card-bg); }

/* MINI-JUEGO REMOVED */

/* INSTA GALLERY */
.insta-gallery { background: var(--bg-gray); }
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.masonry-item:hover img {
  transform: scale(1.05);
}

/* CUSTOM CURSOR */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  background-color: var(--brand-pink);
  border-radius: 50%;
  pointer-events: none; /* Ignore clicks */
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: multiply;
}
[data-theme="dark"] .custom-cursor {
  mix-blend-mode: screen;
}
/* Hide default cursor only if custom cursor is active (handled by JS via body class) */
body.custom-cursor-active {
  cursor: none;
}
body.custom-cursor-active a, 
body.custom-cursor-active button {
  cursor: none;
}
.custom-cursor.hover {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  opacity: 0.5;
}

/* WHATSAPP FLOTANTE */
.floating-wa {
  position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 2000; transition: transform 0.3s;
}
.floating-wa svg {
  width: 35px; height: 35px; flex-shrink: 0; display: block;
}
.floating-wa:hover { transform: scale(1.1); }


/* FOOTER */
.footer { background: var(--bg-cream); color: var(--brand-brown); padding: 70px 20px 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; max-width: 1200px; margin: 0 auto; border-bottom: 1px solid rgba(93,64,55,0.1); padding-bottom: 40px; margin-bottom: 30px;}
.footer-col h4 { color: var(--brand-brown-dark); font-size: 1.4rem; margin-bottom: 25px;}
.footer-col p { color: var(--text-muted); margin-bottom: 12px; font-size: 1rem; }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.95rem; }

/* =========================================
   SOCIAL BUTTONS SECTION
   ========================================= */
.social-buttons-container { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 50px; font-weight: 600; font-family: 'Fredoka', sans-serif; font-size: 1.1rem; color: white; transition: all 0.3s ease; box-shadow: var(--shadow-sm); text-decoration: none; }
.social-btn:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.social-btn.facebook { background: #1877F2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.tiktok { background: #000000; color: #ffffff; }
[data-theme="dark"] .social-btn.tiktok { background: #ffffff; color: #000000; }

/* =========================================
   INSTAGRAM WALL SECTION
   ========================================= */
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 30px; }
.insta-post { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; backdrop-filter: blur(3px); }
.insta-overlay span { font-size: 2.5rem; color: white; }
.insta-post:hover img { transform: scale(1.1); }
.insta-post:hover .insta-overlay { opacity: 1; }
.insta-btn-container { text-align: center; margin-top: 40px; }


/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 1050px) {
  .hero-title { font-size: 3.5rem; }
  .main-img { max-width: 400px; }
  .club-nao-box { flex-direction: column; text-align: center; gap: 30px; padding: 50px 30px; }
  .club-text, .club-form { justify-content: center; max-width: 100%; }
}

@media (max-width: 850px) {
  .tf-hero { padding: 40px 5% 80px 5%; min-height: auto; }
  .tf-nav-links { display: none; }
  .tf-hero-content { flex-direction: column; text-align: center; padding: 10px; gap: 30px; }
  .tf-hero-text { margin-bottom: 0px; max-width: 100%; display: flex; flex-direction: column; align-items: center;}
  .hero-actions { justify-content: center; }
  
  .lines-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .img-wrapper { height: 200px; }
  
  .club-form { flex-direction: column; width: 100%; }
  .club-input { max-width: 100%; }
  .club-btn { width: 100%; }
  
  .promo-banner-overlay { padding: 40px; }
  .promo-text-content h2 { font-size: 2.3rem; }
}

@media (max-width: 500px) {
  .tf-hero { padding: 20px 5% 80px 5%; }
  .hero-title { font-size: 2.5rem; line-height: 1.1; }
  .tf-hero-content { padding: 0px; gap: 20px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .main-img { border-width: 8px; max-width: 280px; }
  .floating-tag { padding: 8px 15px; font-size: 0.8rem; }
  
  .section { padding: 60px 5%; }
  .section-title h2 { font-size: 2.2rem; }
  
  .lines-grid { grid-template-columns: 1fr; }
  .img-wrapper { height: 240px; }
  
  .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .promo-banner-img { height: 300px; }
  .promo-banner-overlay { padding: 25px; }
  .promo-text-content h2 { font-size: 1.8rem; }
}


/* =========================================
   LINKS PAGE (LINKTREE STYLE - ENHANCED)
   ========================================= */
.links-page-body {
  background: linear-gradient(135deg, rgba(30, 15, 25, 0.65), rgba(74, 30, 45, 0.75)), url('../img/imagen para ubicaion.jpeg') no-repeat center center / cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow-x: hidden;
}

.links-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  position: relative;
  animation: linksFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.links-profile {
  margin-bottom: 25px;
}

.links-logo-wrapper {
  width: 115px;
  height: 115px;
  margin: 0 auto 15px auto;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-brown));
  box-shadow: 0 12px 30px rgba(255, 107, 129, 0.35);
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(255, 107, 129, 0.3); }
  100% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(255, 107, 129, 0.5); }
}

.links-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: white;
}

.links-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.links-bio {
  font-size: 0.95rem;
  color: #f3f4f6;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.4;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* Badges section */
.links-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.links-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 129, 0.2);
  color: var(--brand-brown);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.links-badge.status-open {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mini Showcase Gallery */
.links-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 5px 5px 15px 5px;
  margin-bottom: 25px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.links-gallery::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  min-width: 140px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid white;
}

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

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

.gallery-card-tag {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 12px 6px 4px 6px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

/* Links List */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  color: var(--brand-brown);
  text-decoration: none;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.5s ease;
}

.link-card:hover::before {
  left: 100%;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 30px rgba(255, 107, 129, 0.22);
  border-color: var(--brand-pink);
  background: #ffffff;
}

.link-card.highlight {
  background: linear-gradient(135deg, var(--brand-pink) 0%, #ff5252 100%);
  color: white;
  border: none;
}

.link-card.highlight:hover {
  box-shadow: 0 14px 35px rgba(255, 107, 129, 0.45);
}

.link-card.secondary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
}

.link-card.secondary:hover {
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.4);
}

.link-card.maps {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
  color: white;
  border: none;
}

.link-card.maps:hover {
  box-shadow: 0 14px 35px rgba(66, 133, 244, 0.4);
}

.link-thumb {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.link-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 107, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.link-card.highlight .link-icon-box,
.link-card.secondary .link-icon-box,
.link-card.maps .link-icon-box {
  background: rgba(255, 255, 255, 0.2);
}

.link-text-wrapper {
  flex-grow: 1;
  text-align: left;
}

.link-title-text {
  display: block;
  font-size: 1.05rem;
  line-height: 1.2;
}

.link-sub-text {
  display: block;
  font-size: 0.78rem;
  opacity: 0.8;
  font-weight: 400;
  font-family: 'Outfit', sans-serif;
  margin-top: 2px;
}

.link-arrow {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.link-card:hover .link-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* TikTok Video Card Component */
.tiktok-card-wrapper {
  margin-top: 10px;
  margin-bottom: 25px;
  width: 100%;
}

.tiktok-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 9/12;
  max-height: 400px;
  border-radius: 28px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tiktok-video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 129, 0.35);
}

.tiktok-card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tiktok-video-card:hover .tiktok-card-bg {
  transform: scale(1.08);
}

.tiktok-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.tiktok-badge {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Fredoka', sans-serif;
}

.tiktok-play-btn {
  align-self: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  padding-left: 4px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.tiktok-video-card:hover .tiktok-play-btn {
  transform: scale(1.15);
  background: var(--brand-pink);
  border-color: white;
}

.tiktok-card-info {
  text-align: left;
  color: white;
}

.tiktok-card-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.tiktok-card-subtitle {
  font-size: 0.88rem;
  opacity: 0.9;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.links-social-footer {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}


.links-social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-brown);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.links-social-icon:hover {
  transform: translateY(-4px) rotate(8deg);
  box-shadow: 0 8px 20px rgba(255, 107, 129, 0.3);
  color: var(--brand-pink);
}

.links-footer-text {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #e5e7eb;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

