/* ============================================ */
/* CSS GENERAL UNIFICADO - TODAS LAS PÁGINAS */
/* ============================================ */
/* Consolidación de: */
/* - css/style.css */
/* - blog/css/styles.css */
/* - contact/css/contact-style.css */
/* - EBS/css/ebs-style.css + ebs-hero.css */
/* - legal/css/styles.css */
/* ============================================ */

/* ============================= */
/* VARIABLES CSS - SISTEMA DE DISEÑO */
/* ============================= */
:root {
  /* Colores */
  --color-primary: #298556;
  --color-primary-dark: #1f6a42;
  --color-dark: #1a1a1a;
  --color-light: #ffffff;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #dddddd;
  --color-success: #d4edda;
  --color-success-text: #155724;
  --color-error: #f8d7da;
  --color-error-text: #721c24;
  
  /* Espaciados */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  --spacing-xxxl: 60px;
  
  /* Bordes */
  --border-radius: 8px;
  --border-radius-sm: 5px;
  --border-radius-xs: 2px;
  
  /* Fuentes */
  --font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Breakpoints */
  --breakpoint-mobile: 480px;
  --breakpoint-tablet: 768px;
  --breakpoint-laptop: 1024px;
  --breakpoint-desktop: 1200px;
  
  /* Transiciones */
  --transition-fast: 0.3s ease;
  --transition-normal: 0.5s ease;
  --transition-slow: 0.6s ease;
  
  /* Sombras */
  --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-text: 2px 2px 5px rgba(0,0,0,0.5);
}

/* ============================= */
/* RESET Y ESTILOS BASE OPTIMIZADOS */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
  font-weight: var(--font-weight-regular);
  overflow-x: hidden;
}

main {
  width: 100%;
}

/* Utilidades de texto */
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Utilidades de espaciado */
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.p-0 { padding: 0; }

/* Elementos ocultos para accesibilidad */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================= */
/* LAYOUT Y CONTENEDORES */
/* ============================= */
.container {
  max-width: var(--breakpoint-desktop);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container--large {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container--vertical-space {
  padding: 50px 0;
}

.remove-empty-space {
  margin-bottom: 0;
}

/* ============================= */
/* HEADER OPTIMIZADO */
/* ============================= */
header {
  background-color: var(--color-light);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
  position: relative;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 101;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: all var(--transition-fast);
  min-height: 40px;
  min-width: 120px;
  max-width: 170px;
}

/* ============================= */
/* NAVEGACIÓN MEJORADA */
/* ============================= */
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-bottom: var(--spacing-xs);
  font-size: 1.05rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-primary);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a[aria-current="page"] {
  color: var(--color-primary);
}

.nav-menu a[aria-current="page"]::after {
  width: 100%;
}

/* Botón menú móvil */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  font-family: var(--font-family);
  padding: var(--spacing-xs);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  z-index: 101;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* ============================= */
/* HERO SECTION COMPLETAMENTE RESPONSIVO */
/* ============================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-light);
  text-align: left;
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  transition: all var(--transition-normal);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  text-align: left;
  margin-left: 5%;
  margin-right: 5%;
  padding: 20px;
  transition: all var(--transition-normal);
  width: 90%;
}

.hero-logo {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
  text-shadow: var(--shadow-text);
  letter-spacing: 1px;
}

.hero-title,
.hero-subtitle,
.hero-description {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  margin-bottom: var(--spacing-xs);
  text-shadow: var(--shadow-text);
  text-transform: uppercase;
}

.hero-button {
    display: inline-block;
    padding: 14px 36px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-family);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid #ffffff;
    cursor: pointer;
    margin-top: 20px;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

@keyframes pulse-glow-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-button.pulse {
    animation: pulse-glow-white 2s infinite;
}

.hero-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.hero-button.loading::after {
    content: '⏳';
    margin-left: 8px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-button.success {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.hero-button.success::after {
    content: '✓';
    margin-left: 8px;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}

/* ============================= */
/* BOTONES Y ENLACES */
/* ============================= */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-primary);
  color: var(--color-light);
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  font-weight: var(--font-weight-medium);
  transition: background-color var(--transition-fast);
  font-family: var(--font-family);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-primary-dark);
}

.button--large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.button--outline {
  background-color: transparent;
  border: 2px solid var(--color-light);
  color: var(--color-light);
}

.button--outline:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
}

/* ============================= */
/* SECCIÓN SEÑUELOS OPTIMIZADA */
/* ============================= */
.collection-grid {
  margin: 50px auto;
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-md);
  transition: all var(--transition-normal);
  padding: 0 20px;
}

.collection-card {
  background-color: var(--color-light);
  border-radius: var(--border-radius-xs);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-normal);
  transform: scale(0.95);
  width: 100%;
}

.collection-card:hover {
  transform: scale(0.95) translateY(-5px);
}

.card__whole-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card__image {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}

.card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.collection-card:hover .card__image img {
  transform: scale(1.05);
}

.card__text {
  padding: 8px 5px;
}

.text-line-height--medium {
  line-height: 1.4;
}

.text-size--regular {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.text-animation--underline-thin {
  position: relative;
  display: inline-block;
}

.text-animation--underline-thin::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.collection-card:hover .text-animation--underline-thin::after {
  width: 100%;
}

.border-radius-top {
  border-radius: var(--border-radius-xs) var(--border-radius-xs) 0 0;
}

/* ============================= */
/* BANNER SCROLLING OPTIMIZADO */
/* ============================= */
.scrolling-banner {
  background-color: var(--color-dark);
  color: var(--color-light);
  padding: var(--spacing-lg) 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}

.scrolling-text {
  display: flex;
  animation: scrollText 15s linear infinite;
  width: max-content;
}

.text-item {
  font-weight: var(--font-weight-medium);
  font-size: 1.3rem;
  white-space: nowrap;
  padding: 0 80px;
  flex-shrink: 0;
}

@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================= */
/* SECCIÓN EBS OPTIMIZADA */
/* ============================= */
.ebs-section {
  background-color: var(--color-dark);
  color: var(--color-light);
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.ebs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 500px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.ebs-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--spacing-xxxl) 0;
}

.ebs-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.ebs-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-xxxl);
  height: 100%;
}

.ebs-title {
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

.ebs-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-regular);
}

.ebs-description p {
  margin-bottom: var(--spacing-lg);
}

.ebs-button {
  margin-top: var(--spacing-xl);
}

/* ============================= */
/* ESTILOS HERO EBS ALTERNATIVO */
/* ============================= */
.hero-ebs {
    background-color: #ffffff;
    padding: 60px 0 10px 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.hero-ebs .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-ebs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-ebs-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-ebs-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-ebs-text {
    padding-left: 40px;
}

.hero-ebs-title {
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.hero-ebs-subtitle {
    font-family: var(--font-family);
    font-size: 1.6rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.4;
    font-style: italic;
}

.hero-ebs-description {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.7;
    color: var(--color-text);
}

.hero-ebs-description p {
    margin-bottom: 20px;
    font-weight: var(--font-weight-regular);
}

.hero-ebs-description p:last-child {
    margin-bottom: 0;
}

/* ============================= */
/* EBS CONTENT SECTION */
/* ============================= */
.ebs-content-section {
    padding: 30px 0;
    margin: 0;
    width: 100%;
}

.ebs-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.content-grid--image-left .content-block {
    padding: 0;
    margin: 0;
}

.content-image {
    width: 100%;
    margin: 0;
    padding: 0;
}

.content-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ============================= */
/* BLOG ARTICLES */
/* ============================= */
.blog-article .article-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}

.blog-article .article-title {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}

.blog-article .article-meta {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  color: var(--color-text-light);
  font-size: 1.3rem;
}

.blog-article .article-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.3rem;
}

.blog-article .article-content p {
  margin-bottom: var(--spacing-lg);
}

.blog-article .article-intro {
  font-size: 1.6rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
}

.blog-article .article-date-location {
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--spacing-xl);
  font-size: 1.3rem;
}

.blog-article .article-image {
  margin: var(--spacing-xl) 0;
  text-align: center;
}

.blog-article .article-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.blog-article .article-image figcaption {
  margin-top: var(--spacing-sm);
  color: var(--color-text-light);
  font-size: 1rem;
  font-style: italic;
}

.blog-article .article-content h2 {
  font-size: 1.6rem;
  color: var(--color-dark);
  margin: var(--spacing-xl) 0 var(--spacing-lg);
  font-weight: var(--font-weight-semibold);
}

.blog-article .feature-list {
  margin: var(--spacing-lg) 0 var(--spacing-xl);
  padding-left: var(--spacing-lg);
  font-size: 1.3rem;
}

.blog-article .feature-list li {
  margin-bottom: var(--spacing-md);
  line-height: 1.6;
}

.blog-article .article-quote {
  background-color: rgba(41, 133, 86, 0.05);
  border-left: 4px solid var(--color-primary);
  padding: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
  font-style: italic;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  font-size: 1.3rem;
}

.blog-article .article-quote p {
  margin-bottom: 0;
  color: var(--color-text);
}

/* ============================= */
/* CONTENIDO PRODUCTO */
/* ============================= */
.product-main {
  padding: var(--spacing-xxl) 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxl);
  align-items: start;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.product-info h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.product-price {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.product-description {
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

/* ============================= */
/* BOTÓN COMPRA OPTIMIZADO */
/* ============================= */
.buy-button {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-dark);
  color: var(--color-light);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-semibold);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  border: 2px solid var(--color-dark);
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.buy-button:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ============================= */
/* SECCIÓN BLOG - GRILLA 3X3 CON PAGINACIÓN */
/* ============================= */
.blog-section {
  width: 100%;
  padding: var(--spacing-xxxl) 0;
  flex: 1;
}

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  color: var(--color-dark);
  font-weight: var(--font-weight-bold);
}

.results-info {
  margin-bottom: var(--spacing-lg);
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xxl);
}

.blog-card {
  background: var(--color-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  overflow: hidden;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: var(--spacing-lg);
}

.blog-date {
  color: var(--color-text-light);
  font-size: 14px;
  margin-bottom: var(--spacing-xs);
}

.blog-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-link {
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  position: relative;
  padding-bottom: 2px;
  font-size: 0.9rem;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-fast);
}

.blog-link:hover {
  color: var(--color-primary-dark);
}

.blog-link:hover::after {
  width: 100%;
}

/* ============================= */
/* PAGINACIÓN */
/* ============================= */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xl) 0;
  background-color: var(--color-light);
  border-top: 1px solid var(--color-border);
  margin: 0;
  width: 100%;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pagination-btn:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-number {
  padding: var(--spacing-sm) var(--spacing-md);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-width: 40px;
  text-align: center;
}

.page-number:hover {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

.page-number.active {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
}

/* ============================= */
/* CONTACTO */
/* ============================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xxxl);
  align-items: start;
  padding: var(--spacing-xxxl) 0;
}

.contact-info-section {
  padding: var(--spacing-xxl);
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  height: fit-content;
}

.contact-main-title {
  font-family: var(--font-family);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  line-height: 1.2;
}

.contact-info-content {
  max-width: 100%;
}

.contact-info-text h2 {
  font-size: 1.6rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--spacing-xl);
  line-height: 1.4;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: #f9f9f9;
  border-radius: var(--border-radius);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border-left: 4px solid var(--color-primary);
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.contact-item i {
  font-size: 2rem;
  color: var(--color-primary);
  margin-top: var(--spacing-xs);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.contact-item p {
  color: var(--color-text);
  margin-bottom: var(--spacing-xs);
  line-height: 1.5;
  font-size: 1.3rem;
}

.contact-item p:last-child {
  margin-bottom: 0;
}

/* ============================= */
/* FORMULARIO DE CONTACTO */
/* ============================= */
.contact-form-section {
  padding: var(--spacing-xxl);
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  height: fit-content;
}

.contact-form-title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--spacing-xl);
  text-align: left;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  font-size: 1.3rem;
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family);
  font-size: 1.3rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(41, 133, 86, 0.2);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-message {
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--spacing-lg);
  text-align: center;
  font-weight: var(--font-weight-medium);
}

.form-message.success {
  background-color: var(--color-success);
  color: var(--color-success-text);
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: var(--color-error);
  color: var(--color-error-text);
  border: 1px solid #f5c6cb;
}

/* ============================= */
/* VIDEO SECTION */
/* ============================= */
.video-section {
  background-color: #f8f9fa;
  text-align: center;
  padding: 40px 0;
}

.video-section h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-lg);
}

.video-section p {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xxl);
}

.max-w-2xl {
  max-width: 42rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 650px;
    background: #000;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.video-placeholder.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.video-play-button i {
    font-size: 2.5rem;
    color: #298556;
    margin-left: 5px;
}

/* ============================= */
/* NEWSLETTER OPTIMIZADO */
/* ============================= */
.newsletter {
  text-align: center;
  padding: 100px 20px;
  background-image: url('../images/Background_2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: var(--color-light);
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: -1;
  border-radius: var(--border-radius);
}

.newsletter .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.newsletter-icon {
  margin-bottom: 50px;
  display: inline-block;
  animation: float-icon 3s ease-in-out infinite;
}

.newsletter-icon svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}

.newsletter-title {
  margin-bottom: var(--spacing-xxl);
  font-size: 2rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--color-light);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background: transparent;
  color: var(--color-light);
  font-size: 1.3rem;
  font-family: var(--font-family);
  outline: none;
  min-width: 0;
  transition: all var(--transition-fast);
  width: 100%;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--font-weight-regular);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.newsletter-btn {
  padding: 16px 30px;
  background: transparent;
  color: var(--color-light);
  border: 2px solid var(--color-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family);
  font-size: 1.3rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.newsletter-description {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
}

.newsletter-description p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: var(--font-weight-regular);
}

/* ============================= */
/* ESPACIOS EN BLANCO */
/* ============================= */
.white-space-section {
  background-color: var(--color-light);
  width: 100%;
  margin: 0;
}

.white-space-ebs-newsletter {
  height: 100px;
}

.white-space-newsletter-carousel {
  height: 120px;
}

/* ============================= */
/* CARRUSEL OPTIMIZADO */
/* ============================= */
.scrolling-images-parent {
  overflow: hidden;
  background-color: var(--color-light);
  position: relative;
  width: 100%;
  padding: 20px 0;
  margin: 0;
}

.scrolling-images-wrapper {
  display: flex;
  width: fit-content;
}

.scrolling-images {
  display: flex;
  animation: scroll-images 40s linear infinite;
  padding: 0 var(--spacing-md);
}

.scrolling-images--element {
  flex: 0 0 300px;
  padding: 0%;
}

.scrolling-images--cell {
  padding: 0;
}

.scrolling-images--cell img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@keyframes scroll-images {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-300px * 6));
  }
}

.scrolling-images-parent:hover .scrolling-images {
  animation-play-state: paused;
}

/* ============================= */
/* FOOTER OPTIMIZADO */
/* ============================= */
footer {
  background-color: var(--color-light);
  color: var(--color-text);
  padding: var(--spacing-lg) 0 var(--spacing-md);
  margin: 0;
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
  margin-bottom: var(--spacing-md);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

footer h3 {
  margin-bottom: var(--spacing-md);
  font-size: 16px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
}

.footer-links a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--color-dark);
  border-radius: 50%;
  text-decoration: none;
  transition: all var(--transition-fast);
  font-weight: var(--font-weight-medium);
  border: 2px solid transparent;
}

.social-links a:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.social-links a,
.social-links a:hover,
.social-links a:focus {
  color: #ffffff !important;
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.social-links a svg,
.social-links a svg path {
  fill: #ffffff !important;
  stroke: #ffffff !important;
  color: #ffffff !important;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: var(--font-weight-regular);
}

/* ============================= */
/* ANIMACIONES Y TRANSICIONES */
/* ============================= */
.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ============================= */
/* SECCIÓN SOBRE NOSOTROS */
/* ============================= */
.about-section {
    padding: var(--spacing-xxxl) 20px;
    background-color: var(--color-light);
    width: 100%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.about-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.about-intro {
    font-weight: var(--font-weight-medium);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-normal);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* ============================= */
/* ESTILOS PARA TIENDA */
/* ============================= */
.tienda-hero {
    position: relative;
    height: 25vh;
    min-height: 200px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/Background_2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-light);
    margin: 0 0 var(--spacing-xl) 0;
    border-radius: var(--border-radius);
    width: 100%;
}

.tienda-hero-content {
    max-width: 800px;
    padding: var(--spacing-xxl);
    width: 100%;
}

.tienda-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-shadow: var(--shadow-text);
}

.tienda-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
}

.tienda-container {
    padding: var(--spacing-xl) 20px;
    width: 100%;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    width: 100%;
}

.producto-card {
    background: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.producto-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.producto-imagen-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    flex: 1;
    width: 100%;
}

.producto-imagen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
    padding: 20px;
}

.producto-card:hover .producto-imagen {
    transform: scale(1.08);
}

.producto-info {
    padding: var(--spacing-md);
    text-align: center;
    border-top: 1px solid var(--color-border);
    background: var(--color-light);
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.producto-nombre {
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.producto-precio {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.tienda-paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-xxl) 0;
    flex-wrap: wrap;
    width: 100%;
}

.tienda-paginacion-btn {
    padding: 10px 16px;
    border: 2px solid var(--color-border);
    background: var(--color-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-family);
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    min-width: 45px;
    text-align: center;
    color: var(--color-text);
    text-decoration: none;
    display: inline-block;
}

.tienda-paginacion-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(41, 133, 86, 0.05);
}

.tienda-paginacion-btn.active {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.tienda-paginacion-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tienda-pagina-info {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-md);
    background: rgba(41, 133, 86, 0.05);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--color-primary);
    width: 100%;
}

/* ============================= */
/* ESTILOS PARA PRIVACIDAD */
/* ============================= */
.privacy-main {
  padding: var(--spacing-xxl) 0;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
  text-align: center;
}

.privacy-update {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
  font-size: 1rem;
}

.privacy-section {
  margin-bottom: var(--spacing-xl);
}

.privacy-section .section-title {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.subsection {
  margin: var(--spacing-lg) 0;
}

.subsection-title {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.privacy-list {
  margin: var(--spacing-md) 0;
  padding-left: var(--spacing-lg);
}

.privacy-list li {
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}

.privacy-list.numbered {
  list-style-type: decimal;
}

.privacy-list li strong {
  color: var(--color-dark);
}

.privacy-content a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.privacy-content a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ============================= */
/* RESPONSIVE DESIGN OPTIMIZADO */
/* ============================= */

@media (max-width: 1024px) {
  .container,
  .container--large {
    padding: 0 15px;
  }
  
  .hero { height: 60vh; }
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
  .ebs-container { padding: 0 15px; }
  .newsletter { padding: 80px 15px; }
  .productos-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: var(--spacing-xxl); }
  .about-content { gap: var(--spacing-xl); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { gap: var(--spacing-xl); }
}

@media (max-width: 768px) {
  .container,
  .container--large {
    padding: 0 15px;
  }
  
  .hero { height: 50vh; }
  .hero-content { width: 90%; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu-btn { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-light);
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-medium);
  }
  .nav-menu.active { display: flex; }
  .logo img { height: 50px; }
  
  .ebs-container { grid-template-columns: 1fr; }
  .ebs-image { padding: var(--spacing-xxl) 0 0; }
  .ebs-content { padding: var(--spacing-xxl) 0; text-align: center; }
  
  .contact-layout { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  
  .newsletter { padding: 60px 15px; }
  .form-group { flex-direction: column; gap: 0; }
  .newsletter-input { border-radius: var(--border-radius) var(--border-radius) 0 0; border-bottom: none; }
  .newsletter-btn { border-radius: 0 0 var(--border-radius) var(--border-radius); border-top: none; }
  
  .blog-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .productos-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  
  .footer-content { grid-template-columns: 1fr; }
  
  .hero-ebs-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-ebs-text { padding-left: 0; text-align: center; }
  
  .video-wrapper { height: 450px; }
  .privacy-content { padding: 0 var(--spacing-sm); }
}

@media (max-width: 480px) {
  .container,
  .container--large {
    padding: 0 10px;
  }
  
  .hero { height: 45vh; min-height: 350px; }
  .hero-content { padding: 15px; }
  .collection-grid { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
  .logo img { height: 45px; max-width: 140px; }
  .header-top { padding: var(--spacing-xs) 0; }
  
  .newsletter { padding: 50px 10px; border-radius: 0; }
  .newsletter-title { font-size: 1.7rem; }
  .newsletter-btn { font-size: 1rem; padding: 12px 20px; }
  
  .blog-grid { grid-template-columns: 1fr; }
  .blog-image { height: 180px; }
  .pagination-numbers { display: none; }
  
  .product-grid { grid-template-columns: 1fr; }
  .product-info h1 { font-size: 1.8rem; }
  .product-price { font-size: 1.5rem; }
  
  .productos-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-sm); }
  .tienda-paginacion-btn { padding: 8px 12px; min-width: 40px; font-size: 0.9rem; }
  
  .footer-content { grid-template-columns: 1fr; }
  
  .contact-layout { gap: var(--spacing-xl); }
  .contact-info-section,
  .contact-form-section { padding: var(--spacing-lg); }
  .contact-item { flex-direction: column; text-align: center; }
  
  .about-section { padding: var(--spacing-xxl) 10px; }
  .about-title { font-size: 1.8rem; }
  .about-subtitle { font-size: 1.2rem; }
  .about-paragraphs p { font-size: 1rem; }
  
  .hero-ebs { padding: 30px 0 3px 0; }
  .hero-ebs-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-ebs-text { padding-left: 0; }
  .hero-ebs-title { font-size: 1.7rem; }
  
  .tienda-hero-title { font-size: clamp(1.5rem, 4vw, 2rem); }
  .privacy-title { font-size: 1.8rem; }
  .privacy-section .section-title { font-size: 1.2rem; }
  
  .video-wrapper { height: 350px; }
}

@media (max-width: 360px) {
  .logo img { height: 40px; }
  .header-top { min-height: 55px; }
  .hero { height: 40vh; min-height: 300px; }
  .productos-grid { grid-template-columns: 1fr; }
  .tienda-paginacion-btn { padding: 5px 8px; min-width: 30px; font-size: 0.8rem; }
}

@media (min-width: 1400px) {
  .container,
  .container--large { max-width: 1400px; }
  .hero { max-height: 900px; }
  .collection-grid { max-width: 1400px; }
}
