/* ==================== */
/* Variables CSS Globales */
/* ==================== */
:root {
  --primary-color: #f0c14b;
  --primary-color-light: rgba(240, 193, 75, 0.1);
  --text-color: #fff;
  --text-color-light: #eee;
  --text-color-muted: rgba(255, 255, 255, 0.7);
  --bg-card: rgba(255, 255, 255, 0.05);
  --bg-input: rgba(255, 255, 255, 0.1);
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.2);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.3);
  --transition-standard: all 0.3s ease;
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 15px;
  --border-radius-round: 50px;
  --border-radius-circle: 50%;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
}

/* ==================== */
/* Estilos Generales */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #020410;
  color: var(--text-color);
  overflow-x: hidden;
}

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

section {
  padding: var(--spacing-xl) 0;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-heading span {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==================== */
/* Componentes Reutilizables */
/* ==================== */

/* Botones */
.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius-round);
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition-standard);
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  background: var(--primary-color);
  color: #333;
}

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

.primary-btn {
  background: var(--primary-color);
  color: #333;
}

.secondary-btn {
  background: transparent;
  color: var(--text-color);
  border: 2px solid var(--text-color);
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* Contenedores flexibles */
.flex-container {
  display: flex;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
}

/* Iconos */
.icon-feature {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--primary-color-light);
  border-radius: var(--border-radius-circle);
}

/* Tarjetas */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-light);
  transition: var(--transition-standard);
}

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

/* Formularios */
.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  background: var(--bg-input);
  border: none;
  border-radius: var(--border-radius-sm);
  color: var(--text-color);
}

.form-control::placeholder {
  color: var(--text-color-muted);
}

/* ==================== */
/* Header y Navegación */
/* ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: var(--transition-standard);
}

header.active {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
}

.logo img {
  max-width: 150px;
}

.navigation {
  display: flex;
}

.navigation li {
  margin-left: var(--spacing-md);
}

.navigation a {
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition-standard);
}

.navigation a:hover,
.navigation a.active {
  color: var(--primary-color);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
}

.header-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--bg-input);
  border-radius: var(--border-radius-circle);
  transition: var(--transition-standard);
}

.header-social a:hover {
  background: var(--primary-color);
  color: #333;
  transform: translateY(-3px);
}

.header-social i {
  font-size: 1.2rem;
}

#cart-icon {
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-color);
  position: relative;
  transition: var(--transition-standard);
}

#cart-icon:hover {
  color: var(--primary-color);
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: #333;
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 80px;
  width: 350px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-medium);
  display: none;
  z-index: 101;
  max-height: 80vh;
  overflow-y: auto;
}

.cart-dropdown.active {
  display: block;
}

.cart-dropdown h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  text-align: center;
  font-size: 1.3rem;
}

.cart-items {
  margin-bottom: var(--spacing-md);
  max-height: 300px;
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  color: var(--text-color-muted);
  padding: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.empty-cart p {
  margin: 0;
}

.empty-cart-btn {
  margin-top: 5px;
  font-size: 0.9rem;
  padding: 8px 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-right: 10px;
}

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

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 3px;
}

.cart-item-price {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.quantity-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: var(--transition-standard);
}

.quantity-btn:hover {
  background: var(--primary-color);
  color: #333;
  transform: scale(1.1);
}

.quantity-value {
  margin: 0 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-color);
}


.cart-item-remove {
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition-standard);
}

.cart-item-remove:hover {
  color: #ff6b6b;
}

.cart-summary {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  margin-bottom: var(--spacing-sm);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.checkout-btn {
  width: auto;
}

#burger-menu {
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* ==================== */
/* Sección Inicio */
/* ==================== */
.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  min-height: 100vh;
  background-image: url("assets/images/gulero/img.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.home-content {
  max-width: 600px;
  width: 100%;
  padding: var(--spacing-md);
  z-index: 1;
}

.home-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.home-content h1 span {
  color: var(--primary-color);
}

.home-content .tagline {
  font-size: 1.8rem;
  color: var(--text-color-light);
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
}

.home-content p {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  max-width: 90%;
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--spacing-md);
}

.highlight {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--text-color-light);
}

.highlight i {
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

.cta-buttons {
  margin-top: var(--spacing-md);
  display: flex;
  gap: var(--spacing-sm);
}

.cta-main {
  font-size: 1.1rem;
  padding: 15px 30px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(240, 193, 75, 0.3);
}

.featured-product {
  position: relative;
  max-width: 400px;
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-color);
  color: #333;
  padding: 8px 30px;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: var(--shadow-light);
}

/* ==================== */
/* Sección Nosotros */
/* ==================== */
.news-para {
  color: var(--text-color-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
  line-height: 1.6;
}

.news-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
}

.box {
  max-width: 350px;
}

.box-img img {
  width: 100%;
  border-radius: var(--border-radius-md);
  transition: var(--transition-standard);
}

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

/* ==================== */
/* Secciones de Video y Productos */
/* ==================== */
.trailer {
  padding: var(--spacing-xl) 0;
}

.videoContainer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.videoMP4 {
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.videoControl {
  width: 100%;
}

.video-description {
  color: var(--text-color-light);
  margin-top: var(--spacing-md);
  font-size: 1.1rem;
}

/* Productos Section */
.productos-section {
  padding: var(--spacing-xl) 0;
}

.productos-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  color: var(--text-color-light);
  font-size: 1.1rem;
}

.slider-container {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.slider-container img {
  width: 100%;
  display: block;
}

.producto-info {
  background: rgba(0,0,0,0.8);
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--text-color);
  transform: translateY(100%);
  transition: var(--transition-standard);
}

.slider-container:hover .producto-info {
  transform: translateY(0);
}

.producto-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.producto-info p {
  margin: 0 0 8px 0;
  font-size: 0.9rem;
}

.precio {
  font-weight: bold;
  color: var(--primary-color);
}

.productos-cta {
  text-align: center;
  margin-top: var(--spacing-md);
}


/* ==================== */
/* Sección Testimonios */
/* ==================== */
.testimonios-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
}

.testimonios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 5%;
}

.testimonio-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md);
  width: 100%;
  max-width: 350px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-standard);
}

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

.cliente-info {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.cliente-avatar i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-right: var(--spacing-sm);
}

.cliente-nombre h4 {
  margin: 0;
  color: var(--text-color);
}

.rating {
  color: var(--primary-color);
  margin-top: 0.3rem;
}

.testimonio-texto {
  color: var(--text-color-light);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 10px;
}

.verified-purchase {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--primary-color);
  margin-top: 10px;
}

.verified-purchase i {
  margin-right: 5px;
  font-size: 1rem;
}

.testimonios-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.satisfaction-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color-light);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.satisfaction-guarantee i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1.3rem;
}

/* ==================== */
/* Sección Contacto */
/* ==================== */
.contacto-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
}

.contacto-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.contacto-content {
  flex: 2;
  min-width: 300px;
  color: var(--text-color-light);
}

.order-form-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.order-benefits {
  flex: 1;
  min-width: 250px;
  padding: var(--spacing-md);
  background: rgba(240, 193, 75, 0.05);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--primary-color);
}

.order-benefits h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.benefits-list li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.3rem;
}

.contacto-info-container {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

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

.contacto-img img {
  max-width: 250px;
  border-radius: var(--border-radius-md);
}

.contacto-info {
  background: var(--bg-card);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
}

.contacto-info h4 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-right: var(--spacing-xs);
  min-width: 25px;
}

.contacto-form {
  flex: 2;
  min-width: 300px;
  background: var(--bg-card);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-medium);
}

.contacto-form h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  text-align: center;
  font-size: 1.5rem;
}

.order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-color-muted);
  font-size: 0.9rem;
  position: relative;
  flex: 1;
  text-align: center;
}

.step span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-bottom: 5px;
  font-weight: bold;
}

.step.active {
  color: var(--primary-color);
}

.step.active span {
  background: var(--primary-color);
  color: #333;
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text-color-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-color);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-color-muted);
}

.form-row {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.checkout-cart-items {
  background: rgba(0,0,0,0.1);
  border-radius: var(--border-radius-sm);
  margin-top: 8px;
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
}

.empty-checkout-cart {
  color: var(--text-color-muted);
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.empty-checkout-cart p {
  margin: 0;
}

.checkout-cart-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.checkout-cart-item:last-child {
  border-bottom: none;
}

.checkout-item-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkout-item-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.checkout-item-quantity {
  color: var(--text-color-muted);
  font-size: 0.9rem;
}

.checkout-item-quantity-controls {
  display: flex;
  align-items: center;
  color: var(--text-color-muted);
  font-size: 0.9rem;
}


.checkout-item-price {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.order-summary {
  background: rgba(0,0,0,0.2);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  margin: var(--spacing-md) 0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.summary-item.total {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: bold;
  font-size: 1.1rem;
}

.summary-value {
  color: var(--primary-color);
}

.order-button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: var(--spacing-sm);
}

.secure-payment {
  text-align: center;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-color-muted);
  display: flex;
  justify-content: center;
  align-items: center;
}

.secure-payment i {
  margin-right: 5px;
  color: var(--primary-color);
}

.delivery-info {
  background: var(--primary-color-light);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary-color);
}

.delivery-info h4 {
  margin-top: 0;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
}

.delivery-info p {
  margin: var(--spacing-xs) 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.delivery-info p i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 1.1rem;
  min-width: 20px;
}

/* ==================== */
/* Footer */
/* ==================== */
.footer-logo-container {
  display: flex;
  justify-content: center;
  padding: var(--spacing-md) 0;
}

.footer-logo-container img {
  max-width: 150px;
}

footer {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: var(--spacing-md) 5%;
  background: rgba(0, 0, 0, 0.3);
}

.footer-box {
  margin: var(--spacing-sm);
}

.footer-box h6 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
}

.footer-box a {
  display: block;
  margin-bottom: 10px;
  color: var(--text-color-light);
  transition: var(--transition-standard);
}

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

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--bg-input);
  border-radius: var(--border-radius-circle);
  transition: var(--transition-standard);
  color: white;
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #333;
  transform: translateY(-5px);
}

/*TODO: REVISAR POR QUE NO FUNCIONA CON .footer-social a:-webkit-any-link */
a:-webkit-any-link {
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.footer-social i {
  font-size: 1.5rem;
}

.copy {
  text-align: center;
  padding: var(--spacing-md) 0;
  color: var(--text-color-muted);
  font-size: 0.9rem;
}

/* ==================== */
/* Media Queries */
/* ==================== */
@media (max-width: 1200px) {
  .home-content h1 {
    font-size: 3.5rem;
  }

  header {
    padding: 20px 50px;
  }
}

@media (max-width: 992px) {
  .home, .contacto-container {
    flex-direction: column;
    justify-content: center;
    padding: 120px 5% 50px;
    text-align: center;
  }

  .home-content {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-md) 0;
  }

  .featured-product {
    margin: 0 auto;
  }

  .contacto-info {
    grid-template-columns: 1fr;
  }

  .home-content h1 {
    font-size: 3rem;
  }

  .section-heading span {
    font-size: 2rem;
  }

  header {
    padding: 20px 30px;
  }

  .header-social span {
    font-size: 0.8rem;
  }

  .header-social a {
    width: 28px;
    height: 28px;
  }

  .header-social i {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .home {
    padding: 100px 5% 40px;
  }

  .home-content {
    padding: var(--spacing-sm) var(--spacing-sm);
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content p {
    font-size: 1rem;
    padding: 0 var(--spacing-xs);
  }

  .productos-intro, .contacto-content {
    padding: 0 var(--spacing-sm);
  }

  .featured-product {
    max-width: 300px;
    margin: 0 auto;
  }

  .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-standard);
  }

  .navigation.active {
    height: 100vh;
    padding: var(--spacing-md) 0;
  }

  .navigation li {
    margin: var(--spacing-sm) 0;
  }

  #burger-menu {
    display: block;
  }

  .header-icons {
    justify-content: flex-end;
    width: 100%;
  }

  .header-icons > * {
    order: 3;
  }

  .header-social {
    order: 1;
    gap: 8px;
  }

  #cart-icon {
    order: 2;
    margin: 0 15px;
  }

  #burger-menu {
    order: 3;
  }

  .cart-dropdown {
    width: 90%;
    right: 5%;
    left: 5%;
    max-height: 70vh;
  }

  .header-social span {
    display: none;
  }

  .header-social a {
    width: 25px;
    height: 25px;
  }

  .header-social i {
    font-size: 1rem;
  }


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

  .footer-box {
    text-align: center;
    margin-bottom: var(--spacing-md);
  }
}

@media (max-width: 576px) {
  .header-social {
    gap: 5px;
  }

  .header-social a {
    width: 22px;
    height: 22px;
  }

  .header-social i {
    font-size: 0.9rem;
  }

  .home {
    padding: 80px 5% 30px;
    min-height: auto;
    padding-bottom: 50px;
  }

  .home-content {
    padding: var(--spacing-xs);
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content p {
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
  }

  .featured-product {
    max-width: 250px;
  }

  .section-heading span {
    font-size: 1.5rem;
  }

  .testimonio-card {
    max-width: 100%;
  }
}
/* Mejoras para la responsividad de las secciones específicas */

/* Sección Nuestra Marca */
.news {
  padding: var(--spacing-xl) 5%;
}

.news .section-heading {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  width: 100%;
}

.news-para {
  color: var(--text-color-light);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1.1rem;
  line-height: 1.6;
  padding: 0 var(--spacing-sm);
}

.news-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.box {
  max-width: 350px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.box-img {
  width: 100%;
  display: flex;
  justify-content: center;
}

.box-img img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-standard);
}

/* Estilos para la sección Nosotros */
.nosotros-content {
  max-width: 1000px;
  margin: 0 auto var(--spacing-lg);
  padding: 0 var(--spacing-sm);
  text-align: left;
}

.nosotros-section {
  margin-bottom: var(--spacing-md);
  background: var(--bg-card);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.nosotros-section h2 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
  font-size: 1.8rem;
}

.nosotros-section p {
  color: var(--text-color-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

.nosotros-section ul {
  padding-left: var(--spacing-md);
}

.nosotros-section ul li {
  color: var(--text-color-light);
  margin-bottom: var(--spacing-xs);
  line-height: 1.6;
  font-size: 1.1rem;
  list-style-type: disc;
}

/* Sección Nuestra Historia en Movimiento */
.trailer {
  padding: var(--spacing-xl) 5%;
}

.trailer .section-heading {
  text-align: center;
  width: 100%;
}

.videoContainer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 var(--spacing-sm);
}

.videoMP4 {
  width: 100%;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}

.videoControl {
  width: 100%;
  display: block;
}

.video-description {
  color: var(--text-color-light);
  margin-top: var(--spacing-md);
  font-size: 1.1rem;
  text-align: center;
  padding: 0 var(--spacing-sm);
}

/* Sección Nuestros Sabores */
.productos-section {
  padding: var(--spacing-xl) 5%;
}

.productos-section .section-heading {
  text-align: center;
  width: 100%;
}

.gameplay-heading {
  text-align: center;
  width: 100%;
}

.productos-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  color: var(--text-color-light);
  font-size: 1.1rem;
  padding: 0 var(--spacing-sm);
}

/* Mejoras para la sección Nuestros Sabores */
.carousel.swiper {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 var(--spacing-sm) !important;
  overflow: hidden !important;
  justify-content: center !important;
  display: flex !important;
  align-items: center !important;
}

.swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: auto !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.slider-container {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  aspect-ratio: 3/4;
  margin: 0 auto !important;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease;
}

.slider-container:hover {
  transform: translateY(-10px);
}

.product-label {
  position: absolute;
  top: 15px;
  right: 0;
  background: var(--primary-color);
  color: #333;
  font-weight: bold;
  padding: 5px 15px;
  font-size: 0.8rem;
  z-index: 20;
  box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.producto-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.85);
  padding: 15px;
  transform: translateY(0);
  transition: var(--transition-standard);
  z-index: 10;
}

.producto-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.producto-info p {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
}

.product-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}

.product-quantity-controls {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.precio {
  display: inline-block;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-buy-btn {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: var(--border-radius-round);
}

.shipping-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--text-color-light);
  text-align: center;
}

/* Estilos para el carrusel Swiper */
.swiper-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(240, 193, 75, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.productos-cta {
  text-align: center;
  margin-top: var(--spacing-md);
  width: 100%;
}

/* Media queries para responsividad mejorada */
@media (max-width: 1200px) {
  .news-container, .carousel.swiper {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .news-container, .carousel.swiper {
    max-width: 700px;
  }

  .videoContainer {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .news-container, .carousel.swiper, .videoContainer {
    max-width: 90%;
    overflow-x: hidden;
  }

  .news-para, .productos-intro, .video-description {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
  }

  .box {
    max-width: 300px;
  }

  section {
    overflow-x: hidden;
  }

  .home-content .tagline {
    font-size: 1.5rem;
  }

  .product-highlights {
    margin-bottom: var(--spacing-sm);
  }

  .highlight {
    font-size: 1rem;
  }

  .cta-main {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .order-form-container {
    flex-direction: column;
  }

  .order-benefits {
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .contacto-info-container {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .news-container, .carousel.swiper, .videoContainer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .box {
    max-width: 280px;
  }

  .section-heading span {
    font-size: 1.5rem;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content .tagline {
    font-size: 1.2rem;
  }

  .home-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .product-highlights {
    margin-bottom: var(--spacing-xs);
  }

  .highlight {
    font-size: 0.9rem;
  }

  .highlight i {
    font-size: 1.1rem;
  }

  .product-label {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .producto-info h3 {
    font-size: 1.1rem;
  }

  .producto-info p {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .precio {
    font-size: 1.1rem;
  }

  .product-buy-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .order-steps {
    margin-bottom: var(--spacing-sm);
  }

  .step {
    font-size: 0.8rem;
  }

  .step span {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }

  .form-group label {
    font-size: 0.8rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 0.9rem;
  }

  .order-summary {
    padding: 10px;
  }

  .summary-item {
    font-size: 0.85rem;
  }

  .summary-item.total {
    font-size: 1rem;
  }

  .order-button {
    padding: 12px;
    font-size: 1rem;
  }

  .secure-payment {
    font-size: 0.8rem;
  }

  .benefits-list li {
    font-size: 0.9rem;
  }

  .benefits-list li i {
    font-size: 1.1rem;
  }

  .order-benefits h2,
  .contacto-form h3 {
    font-size: 1.3rem;
  }

  .contacto-info h4,
  .delivery-info h4 {
    font-size: 1.1rem;
  }

  .info-item,
  .delivery-info p {
    font-size: 0.9rem;
  }
}
/* Notificaciones del carrito */
.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: #333;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-medium);
  z-index: 1000;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 576px) {
  .cart-notification {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}

/* Asegurarse de que el script inicializa correctamente el Swiper */
/* Agregar al archivo script.js */

/* Modal de opciones de WhatsApp */
.whatsapp-options-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-options-modal.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-options-content {
  background: #1a1a1a;
  border-radius: var(--border-radius-md);
  width: 90%;
  max-width: 500px;
  box-shadow: var(--shadow-medium);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.whatsapp-options-modal.show .whatsapp-options-content {
  transform: scale(1);
}

.whatsapp-options-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-options-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.2rem;
}

.whatsapp-options-close {
  background: none;
  border: none;
  color: var(--text-color-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.whatsapp-options-body {
  padding: 20px;
}

.whatsapp-options-body p {
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.whatsapp-options-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.whatsapp-options-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-size: 1rem;
  width: 100%;
}

.whatsapp-web-btn {
  background: #128C7E;
  color: white;
}

.whatsapp-mobile-btn,
.whatsapp-desktop-btn {
  background: #25D366;
  color: white;
}

.whatsapp-options-buttons .btn i {
  font-size: 1.3rem;
}

@media (min-width: 576px) {
  .whatsapp-options-buttons {
    flex-direction: row;
  }
}
