/* ==========================================================================
   Helados Yummy - Design System & Custom CSS (Tropi Fruits SAS)
   Estética Minimalista Gourmet 100% Adaptable & SEO Optimizado
   WhatsApp Oficial: 573017947628
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors from Yummy Logo */
  --color-primary: #34373C;       /* Dark Charcoal Slate */
  --color-primary-light: #4D5156; /* Charcoal Medium */
  --color-accent: #FFB800;        /* Yummy Sunny Yellow */
  --color-accent-hover: #E5A400;  /* Yellow Darker */
  --color-bg-main: #FAF8F5;       /* Warm Off-White Cream */
  --color-bg-card: #FFFFFF;       /* Pure White Card */
  --color-bg-soft: #F4F1EA;       /* Soft Sand Neutral */
  --color-text-main: #22252A;     /* Deep Neutral */
  --color-text-muted: #6B7280;    /* Muted Gray */

  /* Functional Colors */
  --color-whatsapp: #25D366;      /* Official WhatsApp Green */
  --color-whatsapp-dark: #1EBE5B;
  --color-vegan-tag: #059669;     /* Emerald Green */
  --color-vegan-bg: #ECFDF5;
  --color-milk-tag: #2563EB;      /* Sapphire Blue */
  --color-milk-bg: #EFF6FF;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Curvas de esquinas menos pronunciadas (Líneas modernas y elegantes) */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(52, 55, 60, 0.04);
  --shadow-md: 0 8px 24px rgba(52, 55, 60, 0.08);
  --shadow-lg: 0 16px 40px rgba(52, 55, 60, 0.12);
  --shadow-accent: 0 6px 18px rgba(255, 184, 0, 0.3);
  --shadow-whatsapp: 0 6px 18px rgba(37, 211, 102, 0.3);

  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Common Styles */
.section {
  padding: 4.5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 184, 0, 0.18);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.6rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.35);
}

.btn-whatsapp {
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
}

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

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

/* Botón Flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: var(--shadow-whatsapp);
  transition: all var(--transition-normal);
  animation: pulse-wa 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-3px);
  background-color: var(--color-whatsapp-dark);
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(52, 55, 60, 0.08);
  transition: all var(--transition-fast);
}

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

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

.brand-logo img {
  height: 72px;
  width: auto;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--color-primary);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(52, 55, 60, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.header-social-icon:hover {
  background-color: var(--color-primary);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Hamburguesa móvil */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

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

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

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

/* Hero Section */
.hero {
  padding: 3.5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(52, 55, 60, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.hero-title span.accent-highlight {
  color: var(--color-primary);
  background: linear-gradient(180deg, transparent 65%, var(--color-accent) 65%);
  padding: 0 4px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(52, 55, 60, 0.08);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 300px;
}

.hero-float-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 184, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-float-text p.bold {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--color-primary);
}

.hero-float-text p.sub {
  font-size: 0.825rem;
  color: var(--color-text-muted);
}

/* History Section ("Nuestra Historia") */
.story-section {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(52, 55, 60, 0.06);
  border-bottom: 1px solid rgba(52, 55, 60, 0.06);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.story-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.story-content h2 {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.story-highlight-box {
  background-color: var(--color-bg-soft);
  border-left: 4px solid var(--color-accent);
  padding: 1.1rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.5rem;
}

.story-highlight-box p {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
  font-size: 1.02rem;
}

/* Flavor Categories / Filter Nav */
.flavor-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  background-color: #FFFFFF;
  color: var(--color-primary);
  border: 2px solid rgba(52, 55, 60, 0.12);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tab-btn:hover {
  border-color: var(--color-accent);
  background-color: rgba(255, 184, 0, 0.08);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.tab-btn.active .tab-count {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.tab-count {
  font-size: 0.8rem;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  background-color: rgba(52, 55, 60, 0.1);
  color: var(--color-primary);
}

/* Flavors Grid */
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.flavor-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(52, 55, 60, 0.06);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 184, 0, 0.4);
}

.flavor-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-soft);
}

.flavor-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform var(--transition-normal);
}

.flavor-card:hover .flavor-card-img-wrap img {
  transform: scale(1.06);
}

.flavor-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flavor-badge.vegan {
  background-color: var(--color-vegan-bg);
  color: var(--color-vegan-tag);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.flavor-badge.milk {
  background-color: var(--color-milk-bg);
  color: var(--color-milk-tag);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.flavor-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.flavor-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: var(--color-primary);
}

.flavor-card-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.15rem;
  flex: 1;
}

.flavor-nutri-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.nutri-pill {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  background-color: var(--color-bg-soft);
  color: var(--color-primary-light);
  border-radius: var(--radius-sm);
}

.flavor-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(52, 55, 60, 0.08);
}

.btn-card-wa {
  flex: 1;
  padding: 0.55rem 0.85rem;
  background-color: var(--color-whatsapp);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background-color var(--transition-fast);
}

.btn-card-wa:hover {
  background-color: var(--color-whatsapp-dark);
}

.btn-card-info {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(52, 55, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.btn-card-info:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

/* Comparison Section */
.comparison-section {
  background-color: #FFFFFF;
  border-top: 1px solid rgba(52, 55, 60, 0.06);
  border-bottom: 1px solid rgba(52, 55, 60, 0.06);
}

.comparison-title-line1 {
  display: block;
  font-size: 2.6rem;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.1;
}

.comparison-title-line2 {
  display: block;
  font-size: 2.3rem;
  color: var(--color-primary);
  font-weight: 800;
  opacity: 0.9;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.comparison-card {
  background-color: var(--color-bg-main);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid rgba(52, 55, 60, 0.08);
}

.comparison-card.yummy-highlight {
  background-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.comparison-card.yummy-highlight h3,
.comparison-card.yummy-highlight p {
  color: #FFFFFF;
}

.comparison-feature-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.comparison-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.icon-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* B2B / Wholesale Section */
.wholesale-card {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1E2125 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.wholesale-content h2 {
  color: #FFFFFF;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.wholesale-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.wholesale-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.w-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.w-feature-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 184, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.wholesale-form {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: var(--color-text-main);
  box-shadow: var(--shadow-lg);
}

.wholesale-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  color: var(--color-primary);
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(52, 55, 60, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
}

/* Modal Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 37, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  max-width: 580px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(52, 55, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  z-index: 10;
}

.modal-header-img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-content-body {
  padding: 1.75rem;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.modal-category-tag {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.modal-nutri-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.modal-nutri-table th,
.modal-nutri-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(52, 55, 60, 0.1);
}

.modal-nutri-table th {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 800;
}

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 1.15rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

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

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   100% RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================================== */

/* Tablets & Pantallas Medianas (max-width: 992px) */
@media (max-width: 992px) {
  .header-container {
    height: 76px;
    position: relative;
  }

  .brand-logo img {
    height: 60px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background-color: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(52, 55, 60, 0.12);
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .story-grid,
  .comparison-grid,
  .wholesale-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .hero-image-wrapper img {
    height: 380px;
  }

  .hero-float-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    max-width: 100%;
  }

  .story-visual img {
    height: 320px;
  }

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

/* Teléfonos y Dispositivos Pequeños (max-width: 576px) */
@media (max-width: 576px) {
  .section {
    padding: 3.5rem 0;
  }

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

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

  .comparison-title-line1 {
    font-size: 2rem;
  }

  .comparison-title-line2 {
    font-size: 1.7rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

  .flavor-tabs-nav {
    flex-direction: column;
    width: 100%;
  }

  .tab-btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.55rem 0.95rem;
    font-size: 0.8rem;
  }

  .whatsapp-float svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }

  .wholesale-card {
    padding: 2rem 1.25rem;
  }

  .modal-box {
    margin: 0 0.5rem;
  }
}
