/* ============================================
   DELI GOURMET - Landing Page Styles
   ============================================ */

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

:root {
  /* Brand Colors */
  --red: #C41E2F;
  --red-dark: #9B1824;
  --red-light: #E8354A;
  --gold: #F5C518;
  --gold-dark: #D4A90E;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE3;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* WhatsApp */
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --instagram: #E1306C;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

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

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

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

ul {
  list-style: none;
}

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

.section {
  padding: var(--section-padding);
}

/* --- Section Headers --- */
.section__subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title em {
  font-style: normal;
  color: var(--red);
}

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

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

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

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

.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  z-index: 1001;
}

.logo-deli {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.header.scrolled .logo-deli {
  color: var(--gold-dark);
  text-shadow: none;
}

.logo-gourmet {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo-gourmet {
  color: var(--red);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}

.header.scrolled .nav__link {
  color: var(--gray-700);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  color: var(--red);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.header.scrolled .nav__link::after {
  background: var(--red);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.header.scrolled .nav__toggle span {
  background: var(--gray-800);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  position: relative;
  z-index: 1001;
  margin-left: 0.5rem;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.header.scrolled .lang-switcher__btn {
  background: var(--gray-100);
  border-color: var(--gray-200);
  color: var(--gray-700);
}

.lang-switcher__btn:hover {
  background: rgba(255,255,255,0.25);
}

.header.scrolled .lang-switcher__btn:hover {
  background: var(--gray-200);
}

.lang-switcher__icon {
  width: 16px;
  height: 16px;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 80px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.lang-switcher:hover .lang-switcher__menu,
.lang-switcher__menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu li a {
  display: block;
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}

.lang-switcher__menu li a:hover {
  background: var(--cream);
  color: var(--red);
}

.lang-switcher__menu li a.active {
  color: var(--red);
  font-weight: 700;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 30, 47, 0.35);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 47, 0.45);
}

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

.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn--instagram {
  background: var(--instagram);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(225, 48, 108, 0.3);
}

.btn--instagram:hover {
  background: #C1255A;
  transform: translateY(-2px);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, #D4362E 100%);
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(245, 197, 24, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-block;
  background: rgba(245, 197, 24, 0.2);
  color: var(--gold);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero__badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Hero Image */
.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  width: 340px;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: rotate(3deg);
  transition: var(--transition-slow);
}

.hero__image-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
}

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

.hero__float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

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

.hero__float--1 {
  width: 140px;
  height: 180px;
  top: 10%;
  left: -10%;
  transform: rotate(-8deg);
  animation: float 6s ease-in-out infinite;
}

.hero__float--2 {
  width: 120px;
  height: 150px;
  bottom: 10%;
  right: -5%;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite 3s;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll a {
  display: flex;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.6);
}

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

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--cream);
}

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

.about__images {
  position: relative;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__img--main {
  width: 85%;
  aspect-ratio: 3/4;
}

.about__img--secondary {
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  bottom: -2rem;
  right: 0;
  border: 5px solid var(--cream);
}

.about__stats {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--red);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.stat__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.about__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(196, 30, 47, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

.feature__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.feature__text {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================
   FLAVORS
   ============================================ */
.flavors {
  background: var(--white);
}

.flavors__tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.flavors__tab {
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.flavors__tab:hover {
  border-color: var(--red-light);
  color: var(--red);
}

.flavors__tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.flavors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  animation: fadeInUp 0.5s ease forwards;
}

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

.flavor-card.hidden {
  display: none;
}

.flavor-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}

.flavor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.flavor-card:hover .flavor-card__image img {
  transform: scale(1.05);
}

.flavor-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--red);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--top {
  background: var(--gold);
  color: var(--gray-800);
}

.badge--trufado {
  background: #4A2C2A;
}

.flavor-card__content {
  padding: 1.25rem;
}

.flavor-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.375rem;
}

.flavor-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Placeholder for flavors without photo */
.flavor-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flavor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.flavor-placeholder svg {
  width: 40px;
  height: 40px;
}

.flavor-placeholder span {
  font-weight: 500;
  font-size: 0.9rem;
}

.flavors__cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.flavors__cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

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

/* ============================================
   EVENTS
   ============================================ */
.events {
  background: var(--cream);
}

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

.events__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.events__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}

.events__list svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--whatsapp);
}

.events__images {
  position: relative;
}

.events__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.events__img--main {
  aspect-ratio: 3/4;
  width: 80%;
}

.events__img--combo {
  position: absolute;
  width: 55%;
  bottom: -1.5rem;
  right: 0;
  border: 5px solid var(--cream);
  aspect-ratio: 1;
}

/* ============================================
   COMBO
   ============================================ */
.combo {
  background: var(--white);
}

.combo__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.combo__content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.combo__tag {
  display: inline-block;
  background: rgba(245, 197, 24, 0.2);
  color: var(--gold);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  width: fit-content;
  border: 1px solid rgba(245, 197, 24, 0.3);
}

.combo__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.combo__desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.combo__price {
  margin-bottom: 2rem;
}

.combo__price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.combo__price-value small {
  font-size: 1.5rem;
}

.combo__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.combo__image img {
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.testimonial-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.testimonial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.testimonial-card:hover .testimonial-card__image img {
  transform: scale(1.05);
}

.testimonial-card__text {
  padding: 1.25rem 1.25rem 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.6;
}

.testimonial-card__location {
  display: block;
  padding: 0.5rem 1.25rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA / CONTACT
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
  color: var(--white);
}

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

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta__info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.cta__info-item svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer__tagline {
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
  font-style: italic;
}

.footer__location {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__links ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a,
.footer__contact a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
}

.footer__bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

.footer__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1rem;
}

.footer__partner span {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer__partner-link {
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.footer__partner-link:hover {
  opacity: 0.8;
}

.footer__partner-logo {
  height: 22px;
  width: auto;
}

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

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

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

@keyframes pulse-whatsapp {
  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); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 8rem;
  }

  .hero__description {
    margin: 0 auto 2rem;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__badges {
    justify-content: center;
  }

  .hero__image {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__images {
    max-width: 500px;
    margin: 0 auto;
  }

  .events__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .events__images {
    max-width: 500px;
    margin: 0 auto;
  }

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

  .combo__content {
    padding: 2.5rem;
  }

  .combo__image {
    padding: 0 2.5rem 2.5rem;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
    padding: 2rem;
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__menu .nav__link {
    color: var(--gray-700);
    font-size: 1.1rem;
  }

  .nav__menu .nav__link:hover,
  .nav__menu .nav__link.active {
    color: var(--red);
  }

  .nav__toggle {
    display: flex;
  }

  .lang-switcher {
    margin-left: auto;
    margin-right: 0.75rem;
  }

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

  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .about__img--secondary {
    width: 45%;
    bottom: -1rem;
  }

  .flavors__grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__badges {
    flex-direction: column;
    align-items: center;
  }

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

  .combo__content {
    padding: 2rem;
  }

  .combo__price-value {
    font-size: 2.25rem;
  }
}

/* --- Overlay for mobile menu --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
