/* ===================================
   OVALA - CSS 
   Huevos Orgánicos Premium
   =================================== */

/* Variables CSS */
:root {
  /* Colores principales */
  --primary-gold: #D4A574;
  --primary-gold-light: #E8C5A0;
  --primary-gold-dark: #B8956B;
  --secondary-cream: #F5F1E8;
  --accent-green: #4A5D23;
  --accent-green-light: #6B7F3A;
  
  /* Colores neutros */
  --white: #181818;
  --black: #000000;
  --gray-light: #2a2a2a;
  --gray-medium: #b0b0b0;
  --gray-dark: #e4e4e4;
  
  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, #D4A574 0%, #E8C5A0 100%);
  --gradient-secondary: linear-gradient(135deg, #4A5D23 0%, #6B7F3A 100%);
  --gradient-hero: linear-gradient(135deg, rgba(212, 165, 116, 0.9) 0%, rgba(74, 93, 35, 0.8) 100%);
  
  /* Tipografía */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;
  
  /* Sombras */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
  
  /* Transiciones */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Contenedor principal */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   HEADER & NAVEGACIÓN
   =================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  transition: var(--transition-smooth);
}

.navbar {
  padding: 0.5rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.logo-container:hover {
  transform: translateY(-2px);
}

.logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
  transition: var(--transition-smooth);
  /* Clave: agregar padding interno para que el logo no toque los bordes */
  padding: 0.01px; /* Esto crea espacio interno */
  box-sizing: border-box; /* Incluye padding en el tamaño total */
  
  /* Asegurar que la imagen se ajuste bien */
  object-fit: contain; /* Cambiado de 'cover' a 'contain' */
  object-position: center;
  background: #000000; /* Fondo blanco para contraste */
}


.logo-text {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--gray-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-gold-dark);
}

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

.nav-actions {
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.whatsapp-icon {
  font-size: 1.1rem;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}
/*dos ultimas para hacer que el boton whatsapp desaparesca en mb */
/* ===================================
   HERO SECTION
   =================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--secondary-cream); /* Color de respaldo */
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/huevos_portada.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3; /* Aumentado de 0.1 a 0.4 para mayor visibilidad */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Degradado más transparente usando rgba */
  background: linear-gradient(135deg, 
    rgba(212, 165, 116, 0.6) 0%, 
    rgba(74, 93, 35, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.2);
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-badge span {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-out 0.4s both;
}

.title-gradient {
  background: linear-gradient(135deg, #6B7F3A 0%, #4A5D23 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  /* Sombra sutil para definición */
  filter: drop-shadow(0 2px 4px rgba(74, 93, 35, 0.3));
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.6s both;
}

.hero-subtitle {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-top: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.8s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  box-shadow: var(--shadow-soft);
}

.cta-button.primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--accent-green);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-slow);
}

.cta-button:hover .button-shine {
  left: 100%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1s both;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  margin: 0 auto 0.5rem;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   SECCIONES GENERALES
   =================================== */

section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.section-header.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

/* ===================================
   CARACTERÍSTICAS
   =================================== */

.features {
  background: var(--gray-light);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 165, 116, 0.1);
  opacity: 0;
  transform: translateY(30px);
}

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.feature-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 15px;
  height: 180px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
  border-radius: 15px;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.gradient-1 { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.gradient-2 { background: linear-gradient(135deg, #4ECDC4, #44A08D); }
.gradient-3 { background: linear-gradient(135deg, #A8E6CF, #88D8A3); }
.gradient-4 { background: linear-gradient(135deg, #FFD93D, #FF6B6B); }

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  color: var(--gray-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-decoration {
  transform: scaleX(1);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/huevos_canasta.png') center/cover;
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  background: var(--accent-green);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
   /* Clave: agregar padding interno para que el logo no toque los bordes */
  padding: 0.9px; /* Esto crea espacio interno */
  box-sizing: border-box; /* Incluye padding en el tamaño total */
  /* Asegurar que la imagen se ajuste bien */
  object-fit: contain; /* Cambiado de 'cover' a 'contain' */
  object-position: center;
  background: #000000;
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.footer-brand p {
  opacity: 0.9;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* ===================================
   ANIMACIONES
   =================================== */

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

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

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

 .navbar {
    padding: 4px 0 !important;
  }

  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--green-dark, #4A5D23);
    cursor: pointer;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
  
  .whatsapp-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 280px;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }

  .mobile-only {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.8rem;
    background-color: #25d366;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .desktop-only {
    display: none;
  }

  .nav-menu .whatsapp-btn.mobile-only:hover {
    background-color: #1ebc59;
  }
}

@media (max-width: 480px) {
  
  .logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .scroll-indicator {
    display: none;
  }
}


@media (max-width: 768px) {
  .hero {
    background-image: url('../images/huevos_portada_celular.webp'); /* reemplaza imagen fondo en celular */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 400px;
  }

  .hero::before {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }
}
/* ===================================
   PÁGINAS ESPECÍFICAS
   =================================== */

/* Productos */
<img src="images/1.webp" alt="Suscripción Premium">
<img src="images/2.webp" alt="Bandeja Jumbo Blanco">
<img src="images/3.png" alt="Bandeja Super Blanco">
<img src="images/4.webp" alt="Bandeja Extra Grande Blanco">
<img src="images/5.jpg" alt="Bandeja Mediano Blanco">
<img src="images/6.webp" alt="Bandeja Jumbo Marrón">
<img src="images/7.webp" alt="Bandeja Super Marrón">
<img src="images/8.jpg" alt="Bandeja Extra Grande Marrón">
<img src="images/9.webp" alt="Bandeja Mediano Marrón">

.producto-item:hover,
.producto-item.selected {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.producto-circulo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--primary-gold);
}

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

/* Hero Section para Productos */
.productos-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--secondary-cream);
  overflow: hidden;
}

.productos-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/huevos_portada.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 1;
}

.productos-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.productos-hero-title {
 font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #000000;
  animation: fadeIn 1s ease-out 0.4s both;
  display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

}

.productos-title-gradient {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--accent-green);
  animation: fadeIn 1s ease-out 0.4s both;
  display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    display: block;
}

.productos-hero-description {
  font-size: 1.2rem;
  color: var(--gray-light);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Sección de Suscripción Premium */
.productos-suscripcion {
  background: var(--white);
  padding: 5rem 0;
}

.suscripcion-card {
  background: var(--gray-light);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 3rem;
  transition: var(--transition-smooth);
}

.suscripcion-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.suscripcion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.suscripcion-imagen {
  position: relative;
  overflow: hidden;
  height: 400px;
}

.suscripcion-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.suscripcion-card:hover .suscripcion-imagen img {
  transform: scale(1.05);
}

.suscripcion-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

.suscripcion-info {
  padding: 3rem;
}

.suscripcion-info h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.suscripcion-info p {
  color: var(--gray-medium);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.suscripcion-beneficios {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.beneficio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--gray-dark);
}

.beneficio-icon {
  color: var(--primary-gold);
  font-weight: bold;
  font-size: 1.2rem;
}

.suscripcion-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--gradient-secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.suscripcion-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/* Secciones de Productos */
.productos-bandejas,
.productos-cajas,
.productos-bidones {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.productos-bandejas {
  background: var(--gray-light);
}

.productos-cajas {
  background: var(--white);
}

.productos-bidones {
  background: var(--secondary-cream);
}

.productos-categoria {
  margin-bottom: 4rem;
}

.categoria-title {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--primary-gold-dark);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.categoria-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Grid Premium para Productos */
.productos-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.producto-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
}

.producto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.producto-card.selected {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.producto-imagen {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.producto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 93, 35, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.producto-card:hover .producto-overlay {
  opacity: 1;
}

.producto-accion {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.producto-info {
  padding: 2rem;
}

.producto-info h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.producto-descripcion {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.producto-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.spec {
  background: var(--primary-gold-light);
  color: var(--accent-green);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Productos Mayorista */
.productos-mayorista {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.mayorista-info h3 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.mayorista-info p {
  color: var(--gray-medium);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.mayorista-beneficios {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.beneficio-mayorista {
  text-align: center;
}

.beneficio-numero {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 0.5rem;
}

.beneficio-texto {
  font-size: 0.9rem;
  color: var(--gray-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cajas-grid {
  display: grid;
  gap: 3rem;
}

.caja-categoria h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.cajas-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.caja-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
}

.caja-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-medium);
}

.caja-nombre {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.caja-descripcion {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* Bidones */
.bidones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.bidon-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
}

.bidon-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-medium);
}

.bidon-card.selected {
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.bidon-imagen {
  position: relative;
  height: 220px;
  overflow: hidden;
   margin-bottom: 1.5rem;
}

.bidon-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.bidon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(74, 93, 35, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.bidon-card:hover .bidon-overlay {
  opacity: 1;
}

.bidon-accion {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.bidon-info {
  padding: 2rem;
}

.bidon-info h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.bidon-capacidad {
  font-size: 1.1rem;
  color: var(--primary-gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bidon-info p {
  color: var(--gray-medium);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.bidon-usos {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.uso {
  background: var(--primary-gold-light);
  color: var(--accent-green);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}


/* Información de Envío Premium */
.info-envio-premium {
  background: var(--gray-light);
  padding: 5rem 0;
}

.envio-content {
  max-width: 1000px;
  margin: 0 auto;
}

.envio-header {
  text-align: center;
  margin-bottom: 4rem;
}

.envio-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.envio-header p {
  color: var(--gray-medium);
  font-size: 1.1rem;
}

.envio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.envio-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
}

.envio-card.destacada {
  border-color: var(--primary-gold);
  transform: scale(1.05);
}

.envio-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-medium);
}

.envio-card.destacada:hover {
  transform: translateY(-5px) scale(1.07);
}

.envio-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.envio-card h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.envio-precio {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold-dark);
  margin-bottom: 1rem;
}

.envio-card p {
  color: var(--gray-medium);
  line-height: 1.5;
}

.envio-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.notas-importantes {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.notas-importantes h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 2rem;
}

.notas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.nota-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--gray-light);
  border-radius: 15px;
  border-left: 4px solid var(--primary-gold);
}

.nota-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.nota-content strong {
  display: block;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.nota-content p {
  color: var(--gray-medium);
  margin: 0;
  line-height: 1.4;
}

/* CTA Productos */
.productos-cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.productos-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/huevos_canasta.png') center/cover;
  opacity: 0.1;
}

/* Responsive para Productos */
@media (max-width: 768px) {
  .suscripcion-content {
    grid-template-columns: 1fr;
  }
  
  .suscripcion-imagen {
    height: 250px;
  }
  
  .suscripcion-info {
    padding: 2rem;
  }
  
  .productos-mayorista {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mayorista-beneficios {
    justify-content: center;
  }
  
  .envio-grid {
    grid-template-columns: 1fr;
  }
  
  .envio-card.destacada {
    transform: none;
  }
  
  .notas-grid {
    grid-template-columns: 1fr;
  }
  
  .productos-grid-premium {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

   .nav-container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgb(0, 0, 0);
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--green-dark, #4A5D23);
    cursor: pointer;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }

  .mobile-only {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.8rem;
    background-color: #25d366;
    color: white;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
  }

  .desktop-only {
    display: none;
  }

  .nav-menu .whatsapp-btn.mobile-only:hover {
    background-color: #1ebc59;
  }
}

@media (max-width: 768px) {
  .productos-hero {
    background: 
      linear-gradient(135deg, 
        rgba(226, 226, 226, 0.9) 70%, 
        rgba(74, 93, 35, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%),
      url('../images/huevos_portada_celular.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 400px; /* ajusta según tu diseño */
  }

  .productos-hero::before {
    display: none !important;
  }

  .productos-hero-overlay {
    display: none;
  }
}

@media (max-width: 480px) {
  .productos-hero-content {
    padding: 1rem;
  }
  
  .categoria-title {
    font-size: 1.5rem;
  }
  
  .bidones-grid {
    grid-template-columns: 1fr;
  }
  
  .cajas-lista {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }
}

/* Nosotros */
/* ===================================
   SECCIÓN ANIMADA NOSOTROS CON EFECTO DE ENFOQUE - AGREGAR AL FINAL DE STYLE.CSS
   =================================== */

.nosotros-hero-animado {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, 
    var(--secondary-cream) 0%, 
    rgba(212, 165, 116, 0.1) 50%, 
    var(--gray-light) 100%);
  overflow: hidden;
  margin-top: 80px; /* Para compensar el header fijo */
  perspective: 1000px; /* Necesario para efecto 3D */
}

.nosotros-hero-animado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: radial-gradient(circle at 30% 70%, 
    rgba(212, 165, 116, 0.15) 0%, 
    transparent 50%),
    radial-gradient(circle at 70% 30%, 
    rgba(74, 93, 35, 0.1) 0%, 
    transparent 50%); */
  z-index: 1;
}

.nosotros-hero-animado::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23D4A574" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%234A5D23" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23D4A574" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
  z-index: 1;
}

.container-animado {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
  height: 100vh;
  gap: 3rem; /* Ajusta según la separación que necesites */
}

.titulo-animado {
  position: absolute;
  top: 4%;
  text-align: center;
  z-index: 4;
  opacity: 0;
  transform: translateY(20px);
  animation: aparecerTexto 2s ease-out forwards;
  animation-delay: 1s;
}

 .titulo-animado h1 {
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; /* Aumentar de 400 a 800 para más impacto */
  margin: 0 0 1.5rem 0; /* Más espacio abajo */
  line-height: 1.05;
  letter-spacing: -0.03em;
  
  * EFECTO DORADO BRILLANTE PREMIUM */
  color: var(--primary-gold);
  
  
  /* SOMBRAS ELEGANTES Y SUTILES */
  text-shadow:
  0 0 8px rgba(212, 165, 116, 0.7),
  0 0 16px rgba(212, 165, 116, 0.6),
  0 0 24px rgba(184, 149, 107, 0.5),
  0 8px 16px rgba(0, 0, 0, 0.6),
  -1px -1px 0 rgba(74, 93, 35, 0.5),
  1px 1px 0 rgba(74, 93, 35, 0.5);

  /* FILTROS ADICIONALES PARA MAYOR BRILLO */
  filter: brightness(1.1) contrast(1.2);
  position: relative;
}


/* SUBTÍTULO CON EFECTO SIMILAR PERO MÁS SUTIL */
.titulo-animado p {
  font-size: clamp(1.3rem, 3vw, 1.8rem); /* AUMENTADO significativamente */
  font-weight: 600; /* Más peso */
  margin: 0;
  
  /* EFECTO DORADO MÁS SUTIL PERO VISIBLE */
   color: var(#ECE3D8);
  
  text-shadow: 
    0 0 10px rgba(212, 165, 116, 0.4),
  0 4px 8px rgba(0, 0, 0, 0.4);
    
  filter: 
    brightness(1.1)
    drop-shadow(0 0 15px rgba(218, 165, 32, 0.6));
}


.huevo-animado {
  width: clamp(350px, 40vw, 550px);
  height: auto;
  position: relative;
  z-index: 4;
  transform-origin: center;
  animation: girarLadoYZoom 5s ease-out forwards;
  filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.huevo-animado:hover {
  transform: scale(1.02);
}

.particulas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.particula {
  position: absolute;
  background: var(--primary-gold);
  border-radius: 50%;
  opacity: 0;
  animation: flotarParticula 8s ease-in-out infinite;
}

.particula:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 15%;
  animation-delay: 2s;
  background: var(--primary-gold);
}

.particula:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 75%;
  animation-delay: 3.5s;
  background: var(--accent-green-light);
}

.particula:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 45%;
  animation-delay: 4.5s;
  background: var(--primary-gold-light);
}

.particula:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 85%;
  animation-delay: 6s;
  background: var(--primary-gold-dark);
}

.particula:nth-child(5) {
  width: 4px;
  height: 4px;
  left: 25%;
  animation-delay: 2.5s;
  background: var(--accent-green);
}

/* Efecto de scroll - desactivar animación y filtros */
.nosotros-hero-animado.scroll-active .huevo-animado {
  animation: none !important;
  filter: none !important;
  transform: scale(0.9) translateY(20px);
  opacity: 0.8;
}

/* Animaciones principales */
@keyframes girarLadoYZoom {
  0% {
    transform: scale(1.1) rotateY(-10deg);
    filter: blur(4px);
  }
  50% {
    transform: scale(1.05) rotateY(10deg);
    filter: blur(1px);
  }
  100% {
    transform: scale(1.0) rotateY(0deg);
    filter: blur(0);
  }
}

@keyframes aparecerTexto {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px) brightness(0.5);
    text-shadow: none;
  }
  50% {
    opacity: 0.7;
    transform: translateY(15px);
    filter: blur(1px) brightness(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) brightness(1.2) contrast(1.3);
    text-shadow: 
      0 0 5px #FFD700,
      0 0 10px #FFD700,
      0 0 15px #FFD700,
      0 0 20px #FFA500,
      0 0 30px #FFA500,
      0 0 40px #FF8C00,
      0 0 50px #FF8C00,
      0 8px 16px rgba(0, 0, 0, 0.8),
      0 4px 8px rgba(0, 0, 0, 0.6),
      -1px -1px 0 #B8860B,
      1px -1px 0 #B8860B,
      -1px 1px 0 #B8860B,
      1px 1px 0 #B8860B,
      -2px -2px 0 #8B6914,
      2px -2px 0 #8B6914,
      -2px 2px 0 #8B6914,
      2px 2px 0 #8B6914;
  }
}

@keyframes flotarParticula {
  0% {
    opacity: 0;
    transform: translateY(100vh) rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nosotros-hero-animado {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .container-animado {
    padding: 1rem;
  }
  
  .titulo-animado {
    top: 2%;
  }
  
  
  .huevo-animado {
    width: clamp(300px, 65vw, 450px);
    margin-top: clamp(1.5rem, 5vw, 2.5rem);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .redes-enlaces {
    gap: 1.5rem;
  }
  
  .red-social {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .firma-container {
    padding: 0 1rem;
  }

  .firma-imagen {
    width: 290px;   /* aumentar mas tamaño */
    height: auto;
    margin-top: 1rem;
  }

  .logo-final .logo-img {
    width: 300px !important;
    height: auto;
  }

}


@media (max-width: 480px) {
  .nosotros-hero-animado {
    min-height: 100vh;
  }
  
  .titulo-animado {
    top: 1%;
    padding: 0 1rem;
  }
  
  .titulo-animado h1 {
    font-size: 2rem;
    /*text-shadow:
      0 0 4px rgba(212, 165, 116, 0.5),
      0 0 8px rgba(184, 149, 107, 0.4),
      0 4px 6px rgba(0, 0, 0, 0.4);
  
    transition: text-shadow 0.3s ease-in-out;*/
  }
  
  .titulo-animado p {
    font-size: 1rem;
    /*text-shadow:
      0 0 5px rgba(255, 254, 249, 0.442),
      0 2px 4px rgba(0, 0, 0, 0.2); */
  }
  
  .huevo-animado {
    width: clamp(250px, 75vw, 350px);
  }
  .redes-enlaces {
    gap: 1rem;
  }
  
  .red-social {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .footer-column h4 {
    font-size: 1.1rem;
  }
  
  .footer-brand h3 {
    font-size: 1.5rem;
  }
  
  .firma-imagen {
    width: 260px;   /* aumentar mas tamaño */
    height: auto;
    margin-top: 1rem;
  }
  
  .logo-final .logo-img {
    width: 300px !important;
  }
}

/* Pausar animaciones si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .red-social {
    animation: none;
  }
  
  .red-social:hover {
    transform: none;
  }
  
  .logo-fundadores:hover {
    transform: none;
  }
}

/* Mejoras de rendimiento */
.huevo-animado {
  will-change: transform, filter;
}

.titulo-animado {
  will-change: opacity, transform;
}

/* Pausar animaciones si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .huevo-animado,
  .titulo-animado,
  .particula {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.nuestra-historia {
  padding: 5rem 0;
}

.historia-content {
  max-width: 800px;
  margin: 0 auto;
}

.texto-principal h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 2rem;
  text-align: center;
}

.texto-principal .intro {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--gray-dark);
  text-align: center;
}

.compromiso,
.familia,
.comunidad,
.bienvenida {
  margin-bottom: 3rem;
}

.compromiso h3,
.familia h3,
.comunidad h3,
.bienvenida h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--primary-gold-dark);
  margin-bottom: 1rem;
}

.bienvenida h3.destacado {
  text-align: center;
  font-size: 2rem;
  color: var(--accent-green);
}

.mensaje-final {
  text-align: center;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gray-medium);
}

.valor h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.valor p {
  color: var(--gray-medium);
  line-height: 1.6;
}

.firma-seccion {
  background: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.firma-container {
  max-width: 600px;
  margin: 0 auto;
}

.mensaje-firma {
  font-size: 1.2rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
  font-style: italic;
}

.firma-imagen {
  max-width: 400px;
  height: auto;
  margin-bottom: 9 rem;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.nombres-firma {
  font-family: var(--font-primary);
  font-size: 1.7rem;
  font-weight: 650;
  color: var(--accent-green);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.titulo-firma {
  font-size: 1.3rem;
  color: var(--primary-gold-dark);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
}

/* Logo Ovala debajo de "Fundadores de Ovala" 
.logo-fundadores {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
  margin: 1.5rem auto 2.5rem;
  display: block;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  
}

.logo-fundadores:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}*/

/* Sección de redes sociales */
.redes-sociales {
  background: var(--secondary-cream);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.redes-container {
  max-width: 600px;
  margin: 0 auto;
}

.redes-titulo {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.redes-subtitulo {
  font-size: 1rem;
  color: var(--gray-medium);
  margin-bottom: 2.5rem;
}

.redes-enlaces {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.red-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.red-social::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: var(--transition-smooth);
  z-index: 1;
}

.red-social span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: bold;
}

/* Colores específicos para cada red social */
.facebook {
  background: #1877F2;
}

.facebook::before {
  background: #1877F2;
}

.facebook:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.instagram::before {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.instagram:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(221, 42, 123, 0.4);
}

.tiktok {
  background: #000000;
}

.tiktok::before {
  background: linear-gradient(45deg, #FF0050, #00F2EA);
}

.tiktok:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 0, 80, 0.4);
}

.tiktok:hover::before {
  opacity: 0.9;
}

/* Texto adicional para las redes */
.redes-texto {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gray-medium);
  font-style: italic;
}

/* Efectos hover adicionales */
.red-social:hover {
  transform: translateY(-5px) scale(1.1);
}

/* Animación sutil para las redes sociales */
@keyframes pulseRed {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.red-social {
  animation: pulseRed 3s ease-in-out infinite;
}

.red-social:nth-child(1) {
  animation-delay: 0s;
}

.red-social:nth-child(2) {
  animation-delay: 1s;
}

.red-social:nth-child(3) {
  animation-delay: 2s;
}

/* Footer completo para página nosotros  */
.footer {
  background: var(--accent-green);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-gold);
  background: #000000;
}

.footer-brand h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.footer-brand p {
  opacity: 0.9;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h4 {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.8;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}


/* ===================================
   INFORMACIÓN DE ENVÍO (Productos)
   =================================== */

.info-envio {
  background: var(--secondary-cream);
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-top: 3rem;
}

.info-envio h2 {
  font-family: var(--font-primary);
  font-size: 2rem;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 2rem;
}

.notas h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--primary-gold-dark);
  margin-bottom: 1.5rem;
}

.notas ul {
  list-style: none;
  padding: 0;
}

.notas li {
  background: var(--white);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-gold);
  box-shadow: var(--shadow-soft);
  line-height: 1.6;
}

.notas li strong {
  color: var(--accent-green);
  font-weight: 600;
}

/* ===================================
   SECCIONES DE PRODUCTOS ESPECÍFICAS
   =================================== */

.suscripcion-section,
.bandejas-section,
.cajas-section,
.bidones-section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.suscripcion-section:last-child,
.bandejas-section:last-child,
.cajas-section:last-child,
.bidones-section:last-child {
  border-bottom: none;
}

.suscripcion-section h2,
.bandejas-section h2,
.cajas-section h2,
.bidones-section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: var(--accent-green);
  text-align: center;
  margin-bottom: 2rem;
}

.bandejas-section h3,
.cajas-section h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  color: var(--primary-gold-dark);
  margin: 2rem 0 1.5rem;
  text-align: center;
}

.producto-item h3,
.producto-item h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--accent-green);
  margin-top: 1rem;
  font-weight: 600;
}

/* ===================================
   ESTADOS ACTIVOS Y HOVER
   =================================== */

.nav-link.active {
  color: var(--primary-gold-dark);
  font-weight: 600;
}

.producto-item.selected {
  background: var(--secondary-cream);
  border-color: var(--primary-gold);
}

/* ===================================
   UTILIDADES
   =================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 2rem; }

/* ===================================
   MEJORAS DE ACCESIBILIDAD
   =================================== */

*:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Reducir movimiento para usuarios que lo prefieren */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================
   MODO OSCURO (OPCIONAL)
   =================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --white: #1a1a1a;
    --black: #ffffff;
    --gray-light: #2d2d2d;
    --gray-dark: #e0e0e0;
    --gray-medium: #b0b0b0;
  }
  
  body {
    background-color: var(--white);
    color: var(--gray-dark);
  }
  
  .header {
    background: rgba(26, 26, 26, 0.95);
  }
  
  .feature-card,
  .contact-form,
  .valor,
  .producto-item {
    background: #2d2d2d;
    color: var(--gray-dark);
  }
}

/* ===================================
   RESPONSIVE ADICIONALES
   =================================== */

@media (max-width: 1024px) {
  .hero-stats {
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 640px) {
  .form-actions-premium {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .btn-enviar-premium,
  .btn-limpiar-premium {
    width: 100%;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .valores-grid {
    grid-template-columns: 1fr;
  }
  
  .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

/* ===================================
   ANIMACIONES ADICIONALES
   =================================== */

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

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

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

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-slide-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .header,
  .whatsapp-btn,
  .cta-button,
  .scroll-indicator {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  section {
    padding: 1rem 0;
    page-break-inside: avoid;
  }
}

/* ===================================
   PERFOMANCE OPTIMIZATIONS
   =================================== */

.hero-overlay,
.feature-card,
.cta-button {
  will-change: transform;
}

.hero-content,
.section-header {
  will-change: opacity, transform;
}

/* Lazy loading para imágenes */
img {
  loading: lazy;
}


/* ===================================
   LOGO FINAL - SOLO PARA SECCIÓN NOSOTROS
   =================================== */
.logo-final {
  text-align: center;
  margin: 4rem 0 2rem;
}

.logo-final img {
  width: 370px;
  height: 370px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  background: #000000;
}

.logo-final img:hover {
  transform: scale(1.05);
}

/* ===================================
   PÁGINA CONTACTO - ESTILOS PREMIUM
   al final de style/* Botones del Formulario */
.form-actions-premium {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-enviar-premium,
.btn-limpiar-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  box-shadow: var(--shadow-soft);
}

.btn-enviar-premium {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-enviar-premium:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-limpiar-premium {
  background: var(--white);
  color: var(--gray-medium);
  border: 2px solid #E9ECEF;
}

.btn-limpiar-premium:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: var(--transition-slow);
}

.btn-enviar-premium:hover .btn-shine {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}

/* Estilo para texto escrito en el formulario de contacto */
.contacto-formulario-premium input,
.contacto-formulario-premium select,
.contacto-formulario-premium textarea {
  color: #FFFFFF; /* más visible y elegante */
}

/* CTA Section Contacto */
.contacto-cta {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.contacto-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/huevos_canasta.png') center/cover;
  opacity: 0.1;
}

.contacto-cta .cta-content {
  position: relative;
  z-index: 2;
}

.contacto-cta h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contacto-cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal de Éxito */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-out;
  backdrop-filter: blur(5px);
}

.success-modal {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-strong);
  animation: slideInScale 0.4s ease-out;
  position: relative;
}

.success-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 25px 25px 0 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: bounceIn 0.6s ease-out 0.2s both;
}

.success-modal h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.success-modal p {
  color: var(--gray-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-ok {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-secondary);
}

.btn-ok:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Animaciones específicas para contacto */
@keyframes slideInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Efectos especiales para cards */
.whatsapp-card {
  border-left: 6px solid #25D366;
}

.whatsapp-card .contacto-icon-container {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.email-card {
  border-left: 6px solid var(--primary-gold);
}

.email-card .contacto-icon-container {
  background: var(--gradient-primary);
}

.horarios-card {
  border-left: 6px solid var(--accent-green);
}

.horarios-card .contacto-icon-container {
  background: var(--gradient-secondary);
}

/* Responsive para Contacto */
@media (max-width: 768px) {
  .contacto-hero {
    background: 
      linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 51%, 
        rgba(74, 93, 35, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%),
      url('../images/huevos_portada_celular.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 70vh;
    margin-top: 70px;
    padding: 1.5rem 0;
  }

  .contacto-hero::before {
    display: none !important;
  }

  .contacto-hero-overlay {
    display: none;
  }

}

/* Mejoras de accesibilidad específicas para contacto */
.contacto-opcion-card:focus-within {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
  outline: none;
}

/* Estados de carga para formulario */
.btn-enviar-premium.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-enviar-premium.loading .btn-text::after {
  content: '...';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% { content: ''; }
  40% { content: '.'; }
  60% { content: '..'; }
  80%, 100% { content: '...'; }
}

/* Transiciones suaves para elementos interactivos */
.contacto-btn,
.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
  will-change: transform, box-shadow;
}

/* Optimizaciones de performance */
.contacto-hero::before,
.contacto-cta::before {
  will-change: opacity;
}

.btn-shine {
  will-change: left;
}

/* Estados hover adicionales */
.email-item:hover,
.horario-item:hover,
.contacto-info-detail:hover {
  transform: translateX(5px);
  transition: var(--transition-fast);
}

.email-item:hover {
  border-left-color: var(--accent-green);
}

.horario-item:hover {
  border-left-color: var(--accent-green);
}

.contacto-info-detail:hover {
  border-left-color: var(--accent-green);
}

/* Efectos de entrada escalonados */
.contacto-opcion-card:nth-child(1) {
  transition-delay: 0.1s;
}

.contacto-opcion-card:nth-child(2) {
  transition-delay: 0.2s;
}

.contacto-opcion-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Pausar animaciones si el usuario prefiere menos movimiento */
@media (prefers-reduced-motion: reduce) {
  .contacto-opcion-card,
  .formulario-wrapper,
  .btn-enviar-premium,
  .btn-limpiar-premium {
    transition: none;
    animation: none;
  }
  
  .btn-shine {
    display: none;
  }
  
  .success-modal {
    animation: none;
  }
  
  .success-icon {
    animation: none;
  }
}

/* FIN DE ESTILOS CONTACTO */css
   =================================== */

.contacto-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-cream);
  overflow: hidden;
  padding-top: 6rem; /* espacio para el header fijo si aplica */
  padding-bottom: 4rem; /* ✅ esto evita el solapamiento */
}


.contacto-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/huevos_portada.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
  clip-path: inset(0);
}

.contacto-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/huevos_portada.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  /* Degradado más transparente para mostrar mejor la imagen */
  background: linear-gradient(135deg, 
    rgba(212, 165, 116, 0.4) 0%, 
    rgba(74, 93, 35, 0.3) 100%);
  z-index: 1;
}

.contacto-info-premium {
  padding-top: 2rem;
  position: relative;
  z-index: 10;
  background-color: var(--white);
}

.contacto-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
  margin: 0 auto; /* Centrado horizontal */
}

.contacto-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95); /* Más opaco para mejor legibilidad */
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 165, 116, 0.3);
  animation: fadeIn 1s ease-out 0.2s both;
}

.contacto-badge span {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.contacto-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease-out 0.4s both;
  text-align: center;
  letter-spacing: -0.03em;

   * EFECTO DORADO BRILLANTE PREMIUM */
  color: var(--primary-gold);
  
  
  /* SOMBRAS ELEGANTES Y SUTILES */
  text-shadow:
  0 0 8px rgba(212, 165, 116, 0.7),
  0 0 16px rgba(212, 165, 116, 0.6),
  0 0 24px rgba(184, 149, 107, 0.5),
  0 8px 16px rgba(0, 0, 0, 0.6),
  -1px -1px 0 rgba(74, 93, 35, 0.5),
  1px 1px 0 rgba(74, 93, 35, 0.5);

  /* FILTROS ADICIONALES PARA MAYOR BRILLO */
  filter: brightness(1.1) contrast(1.2);
  position: relative;
}


/* Efecto dorado para parte del título */
.ovala-brillante {
 font-family: var(--font-primary);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800; /* Aumentar de 400 a 800 para más impacto */
  margin: 0 0 1.5rem 0; /* Más espacio abajo */
  line-height: 1.05;
  letter-spacing: -0.03em;
  
  * EFECTO DORADO BRILLANTE PREMIUM */
  color: var(--primary-gold);
  
  
  /* SOMBRAS ELEGANTES Y SUTILES */
  text-shadow:
  0 0 8px rgba(212, 165, 116, 0.7),
  0 0 16px rgba(212, 165, 116, 0.6),
  0 0 24px rgba(184, 149, 107, 0.5),
  0 8px 16px rgba(0, 0, 0, 0.6),
  -1px -1px 0 rgba(74, 93, 35, 0.5),
  1px 1px 0 rgba(74, 93, 35, 0.5);

  /* FILTROS ADICIONALES PARA MAYOR BRILLO */
  filter: brightness(1.1) contrast(1.2);
  position: relative;
}

.contacto-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95); /* Más opaco para mejor legibilidad */
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.6s both;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contacto-hero-subtitle {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-top: 0.8rem;
}

/* Información de Contacto Premium - ESPACIADO CORREGIDO */
.contacto-info-premium {
  padding: 4rem 0; /* Reducido de 6rem para mejor flujo visual */
  background: var(--gray-light);
  position: relative;
  margin-top: 0; /* Eliminado margen superior innecesario */
}

.contacto-info-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

.contacto-opciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem; /* Reducido de 4rem */
}

.contacto-opcion-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}

.contacto-opcion-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.contacto-opcion-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-gold);
}

.contacto-icon-container {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.contacto-opcion-card:hover .contacto-icon-container {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.contacto-icon {
  font-size: 2.5rem;
  filter: grayscale(100%) brightness(0) invert(1);
}

.contacto-opcion-card h3 {
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contacto-opcion-card p {
  color: var(--gray-medium);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contacto-info-detail {
  background: var(--secondary-cream);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-gold);
}

.contacto-info-detail strong {
  color: var(--accent-green);
  font-size: 1.1rem;
  font-weight: 600;
}

.contacto-emails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.email-item {
  background: var(--secondary-cream);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  text-align: left;
}

.email-item strong {
  display: block;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.email-item a {
  color: var(--primary-gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.email-item a:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

.horarios-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.horario-item {
  background: var(--secondary-cream);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.horario-item strong {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
}

.horario-item span {
  color: var(--gray-medium);
  font-weight: 500;
}

.contacto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.whatsapp-btn-large {
  background: var(--gradient-secondary);
  color: var(--white);
}

.whatsapp-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.btn-icon {
  font-size: 1.1rem;
}

/* Formulario Premium */
.contacto-formulario-premium {
  padding: 6rem 0;
  background: var(--white);
}

.formulario-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gray-light);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-medium);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.formulario-wrapper.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.formulario-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 30px 30px 0 0;
}

.formulario-header {
  text-align: center;
  margin-bottom: 3rem;
}

.formulario-header h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.formulario-header p {
  font-size: 1.1rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

.contacto-form-premium {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group-premium {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group-premium.full-width {
  grid-column: 1 / -1;
}

.form-group-premium label {
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-group-premium.focused label {
  color: var(--primary-gold-dark);
  transform: translateY(-2px);
}

.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 15px;
  font-size: 1rem;
  font-family: var(--font-secondary);
  background: var(--white);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15), var(--shadow-soft);
  transform: translateY(-2px);
}

.form-group-premium.error input,
.form-group-premium.error select,
.form-group-premium.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.form-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 0 0 15px 15px;
  width: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.form-group-premium.focused .form-underline {
  width: 100%;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-weight: 500;
  animation: fadeIn 0.3s ease-out;
}

.form-group-premium textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-secondary);
}

/* Responsive para Contacto */
@media (max-width: 768px) {
  .contacto-hero-content {
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    z-index: 3;
  }
  
  .contacto-hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }
  
  .contacto-hero-description {
    font-size: 1.1rem;
  }
  
  .contacto-info-premium {
    padding: 3rem 0;
  }
  
  .contacto-opciones-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .contacto-opcion-card {
    padding: 2.5rem 2rem;
  }

  .contacto-icon-container {
    width: 70px;
    height: 70px;
  }
  
  .contacto-icon {
    font-size: 2rem;
  }
  
  .contacto-form-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Espaciado uniforme entre grupos */
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group-premium {
    width: 100%;
  }

  body#pagina-contacto .form-group-premium input,
  body#pagina-contacto .form-group-premium select,
  body#pagina-contacto .form-group-premium textarea {
    width: 100% !important;
    padding: 0.8rem !important;
    border-radius: 8px !important;
  }
  
  .form-group-premium input,
  .form-group-premium select,
  .form-group-premium textarea {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
  }

  .formulario-header h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .formulario-header p {
    text-align: center;
    font-size: 1rem;
    color: var(--gray-medium);
  }

  .formulario-wrapper {
    padding: 3rem 2rem;
    margin: 0 1rem;
  }
  
  .form-actions-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-enviar-premium,
  .btn-limpiar-premium {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .success-modal {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contacto-hero {
    min-height: 90vh;
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .contacto-hero-content {
    padding: 1rem 0.5rem;
  }
  
  .contacto-hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem) !important;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  
  .contacto-hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .contacto-badge {
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contacto-badge span {
    font-size: 0.9rem;
  }
  .contacto-opcion-card {
    padding: 2rem 1.5rem;
  }
  
  .contacto-opcion-card h3 {
    font-size: 1.4rem;
  }
  
  .formulario-wrapper {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .formulario-header h2 {
    font-size: 2rem;
  }
  
  .email-item,
  .horario-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .horario-item {
    align-items: center;
  }
}
.

/* ===================================
   FIN DEL ARCHIVO CSS
   =================================== */