/* ==========================================================================
   LA HUEVERÍA CHILE - ESTILO GRANJA DE CAMPO (FARM & ARTISAN DESIGN SYSTEM)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-green: #1B4D3E;
  --primary-green-dark: #12352B;
  --primary-green-light: #2D7A63;
  --accent-gold: #E59B24;
  --accent-gold-dark: #C68114;
  --accent-terracotta: #B85B2E;
  --accent-terracotta-light: #D47445;
  --bg-cream: #FCFAF4;
  --bg-cream-dark: #F3EEE3;
  --bg-white: #FFFFFF;
  --text-main: #232B28;
  --text-muted: #5C6661;
  --text-light: #F4F6F5;
  --border-light: #E5DEC9;
  --border-accent: #D4C7A5;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(27, 77, 62, 0.06);
  --shadow-md: 0 6px 20px rgba(27, 77, 62, 0.1);
  --shadow-lg: 0 12px 32px rgba(27, 77, 62, 0.15);
  
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(229, 155, 36, 0.15);
  color: var(--accent-terracotta);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(184, 91, 46, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Header Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-green-dark), var(--primary-green));
  color: #FFFFFF;
  padding: 10px 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 2px solid var(--accent-gold);
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.announcement-item i {
  color: var(--accent-gold);
}

/* Main Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(252, 250, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green-dark);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--accent-terracotta);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--primary-green-dark);
  position: relative;
  padding: 8px 0;
}

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

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

.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-nav-wa:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary-green-dark);
  cursor: pointer;
}

/* HERO SECTION WITH VIDEO BACKGROUND */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, 
    rgba(15, 35, 25, 0.72) 0%, 
    rgba(15, 35, 25, 0.85) 60%,
    rgba(27, 77, 62, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(229, 155, 36, 0.25);
  border: 1px solid var(--accent-gold);
  color: #FFDF94;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.hero-title span {
  color: var(--accent-gold);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 24px rgba(229, 155, 36, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(229, 155, 36, 0.5);
  background: linear-gradient(135deg, #F5A82E, #D48B17);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-3px);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 24px;
  border-radius: var(--radius-md);
}

.highlight-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.highlight-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.highlight-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.highlight-text p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* SECTIONS COMMON STYLING */
section {
  padding: 90px 0;
}

/* SECTION 1: HUEVOS BLANCO Y COLOR */
.eggs-section {
  background-color: var(--bg-cream);
  position: relative;
}

.caliber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.caliber-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.caliber-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--border-light);
  transition: var(--transition);
}

.caliber-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.caliber-card:hover::before {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
}

.egg-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.egg-icon-wrapper img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.caliber-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin-bottom: 6px;
}

.caliber-weight {
  display: inline-block;
  background-color: rgba(27, 77, 62, 0.08);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.caliber-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FORMATS CARDS */
.formats-header {
  margin-top: 20px;
  margin-bottom: 30px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.format-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.format-card.popular {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.format-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--primary-green-dark);
  margin-bottom: 8px;
}

.format-count {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  margin-bottom: 16px;
}

.format-features {
  margin-bottom: 24px;
}

.format-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.format-features i {
  color: var(--primary-green);
}

/* SECTION 2: HUEVOS ARAUCANÍA */
.araucania-section {
  background: linear-gradient(135deg, #163C30 0%, #0F2D24 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.araucania-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.05;
  background-image: radial-gradient(#FFFFFF 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.araucania-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.araucania-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 4px solid rgba(229, 155, 36, 0.3);
}

.araucania-image-box img,
.araucania-image-box video {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.araucania-image-box:hover img,
.araucania-image-box:hover video {
  transform: scale(1.04);
}

.araucania-badge-floating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 35, 25, 0.9);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-gold);
  color: white;
}

.araucania-content .section-title {
  color: white;
}

.araucania-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.araucania-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.araucania-pill {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.araucania-pill i {
  color: var(--accent-gold);
}

/* SECTION 3: MIELES DE ULMO CHILOÉ */
.honey-section {
  background-color: #FFFDF8;
}

.honey-banner {
  background: linear-gradient(135deg, #FFF6E5, #FFECD1);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid rgba(229, 155, 36, 0.3);
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.honey-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-green-dark);
  margin-bottom: 12px;
}

.honey-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.honey-specs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.spec-badge {
  background: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--accent-terracotta);
  border: 1px solid var(--border-light);
}

.spec-badge i {
  font-size: 1.2rem;
  color: var(--accent-gold-dark);
}

.honey-gallery-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--primary-green-dark);
  margin-bottom: 24px;
}

.honey-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid var(--border-light);
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 77, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* LIGHTBOX MODAL FOR GALLERY */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
}

/* SECTION 4: COBERTURA Y DESPACHO RM */
.delivery-section {
  background-color: var(--bg-cream-dark);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.delivery-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.communes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.commune-chip {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.commune-chip i {
  color: var(--accent-terracotta);
  font-size: 0.8rem;
}

/* SECTION 5: COTIZADOR / GENERADOR DE PEDIDOS WHATSAPP */
.calculator-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, #F5EFE0 100%);
}

.calculator-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-accent);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.calc-step {
  margin-bottom: 28px;
}

.step-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-number {
  width: 28px;
  height: 28px;
  background-color: var(--accent-gold);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 800;
}

.calc-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.calc-btn {
  background-color: var(--bg-cream);
  border: 2px solid var(--border-light);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.calc-btn:hover {
  border-color: var(--accent-gold);
  background-color: white;
}

.calc-btn.active {
  background-color: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.calc-summary-box {
  background-color: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px dashed var(--border-accent);
  margin-top: 30px;
  text-align: center;
}

.summary-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  margin-bottom: 16px;
}

.summary-details {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  background: white;
  padding: 12px;
  border-radius: var(--radius-sm);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  background-color: #25D366;
  color: white;
  padding: 18px 30px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-large:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* SECTION 6: FAQ ACCORDION */
.faq-section {
  background-color: var(--bg-cream);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--accent-gold-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-badge-pulse {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
}

.wa-badge-pulse:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

.wa-tooltip {
  background: white;
  color: var(--primary-green-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* FOOTER */
.footer {
  background-color: var(--primary-green-dark);
  color: white;
  padding-top: 70px;
  padding-bottom: 30px;
  border-top: 3px solid var(--accent-gold);
}

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

.footer-about .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

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

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

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.seo-tags-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* B2B SECTION */
.b2b-section {
  padding: 20px 0;
}

.b2b-banner {
  background: linear-gradient(135deg, var(--primary-green-dark), #103328);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent-gold);
}

.b2b-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 155, 36, 0.2);
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.b2b-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: white;
  margin-bottom: 16px;
}

.b2b-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.b2b-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.b2b-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.b2b-feat-item i {
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-top: 2px;
}

.b2b-feat-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.b2b-feat-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.b2b-btn {
  font-size: 1.1rem;
  padding: 16px 32px;
  box-shadow: 0 8px 24px rgba(229, 155, 36, 0.4);
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .araucania-wrapper {
    grid-template-columns: 1fr;
  }
  .honey-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.1rem;
  }
  
  .wa-tooltip {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
