@charset "UTF-8";

/* ========================================
   ALFAGOL - MODERN PREMIUM DESIGN
   Estilo: Profesional con Personalidad
   Inspiración: Nike, Airbnb, Spotify
======================================== */

:root {
  /* Colores con Personalidad */
  --verde-principal: #2d5f2e;
  --verde-oscuro: #1f4420;
  --verde-claro: #4a8b4d;
  --dorado: #d4af37;
  --negro: #1a1a1a;
  --gris-oscuro: #2e2e2e;
  --gris: #6b6b6b;
  --gris-claro: #e8e8e8;
  --blanco: #ffffff;
  --crema: #f9f7f4;

  /* Tipografía */
  --font-principal: "Inter", -apple-system, sans-serif;
  --font-display: "Unbounded", sans-serif;

  /* Espaciado */
  --espacio-xs: 0.5rem;
  --espacio-sm: 1rem;
  --espacio-md: 2rem;
  --espacio-lg: 3rem;
  --espacio-xl: 4rem;
  --espacio-2xl: 6rem;

  /* Efectos */
  --sombra: 0 10px 40px rgba(0, 0, 0, 0.1);
  --sombra-hover: 0 15px 50px rgba(0, 0, 0, 0.15);
  --transicion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--negro);
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font-principal);
  color: var(--negro);
  background: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
  padding: 0.5rem 2rem;
}

.nav-logo {
  height: 45px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2))
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.navbar.scrolled .nav-logo {
  height: 35px;
}

.nav-logo:hover {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25))
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transform: translateY(-2px) scale(1.05);
}

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

.nav-center a {
  color: var(--blanco);
  text-decoration: none;
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transicion);
}

.nav-center a:hover {
  color: var(--dorado);
  letter-spacing: 2px;
  transform: translateY(-1px);
}

.btn-cart {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transicion);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 4px 8px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(45, 95, 46, 0.2);
}

.btn-cart:hover {
  background: linear-gradient(
    135deg,
    var(--verde-principal) 0%,
    var(--verde-oscuro) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 6px 12px rgba(0, 0, 0, 0.2), 0 12px 24px rgba(45, 95, 46, 0.3);
}

.btn-cart:active {
  transform: translateY(0);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 2px 4px rgba(0, 0, 0, 0.2);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--dorado);
  color: var(--negro);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  min-width: 18px;
}

/* ======== HERO BANNER ======== */
.hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(31, 68, 32, 0.361) 0%,
    rgba(45, 95, 46, 0.472) 50%,
    rgba(212, 175, 55, 0.3) 100%
  ); */
}

.hero-tag-top {
  position: absolute;
  top: 6rem;
  left: 9rem;
  z-index: 20;
  animation: fadeInTag 1s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-button-bottom {
  position: absolute;
  bottom: 1.5rem;
  left: 25%;
  transform: translateX(-50%);
  z-index: 20;
  animation: fadeInUp 1s ease 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: var(--blanco);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--blanco);
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-accent {
  background: linear-gradient(90deg, var(--dorado), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--blanco);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transicion);
}

.btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary svg {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
  transform: translateX(5px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--blanco);
  cursor: pointer;
  transition: var(--transicion);
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(5px);
}

.scroll-indicator span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ======== PRODUCT SHOWCASE ======== */
.product-showcase {
  min-height: 100vh;
  padding: var(--espacio-lg) 0;
  background: linear-gradient(
    to bottom,
    var(--crema) 0%,
    var(--crema) 80%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.showcase-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.showcase-left {
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-right {
  height: 85vh;
  display: flex;
  align-items: center;
}

.product-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: var(--crema);
  box-shadow: var(--sombra);
  transition: var(--transicion);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-image-main:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-hover);
}

.image-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.75rem 1.5rem;
  background: var(--dorado);
  color: var(--negro);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 10;
}

.product-image-main img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
}

.product-info-card {
  background: var(--blanco);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: var(--sombra);
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
}

.product-category {
  display: inline-block;
  color: var(--verde-principal);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 0.4rem;
}

.product-tagline {
  color: var(--gris);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.product-highlights {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gris-claro);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-icon {
  width: 18px;
  height: 18px;
  background: var(--verde-principal);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.highlight-text {
  color: var(--gris-oscuro);
  font-size: 0.85rem;
  white-space: nowrap;
}

.quantity-box {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gris-claro);
}

.quantity-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--negro);
  font-size: 0.9rem;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--verde-principal);
  background: var(--blanco);
  color: var(--verde-principal);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicion);
}

.quantity-btn:hover {
  background: var(--verde-principal);
  color: var(--blanco);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 95, 46, 0.2);
}

.quantity-btn:active {
  transform: translateY(0);
}

.quantity-input {
  flex: 1;
  text-align: center;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-principal);
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  background: var(--crema);
  color: var(--negro);
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--verde-principal);
}

.price-breakdown {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--crema);
  border-radius: 8px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gris-oscuro);
}

.price-row span:last-child {
  font-weight: 600;
  color: var(--negro);
}

.price-total {
  margin-top: 0.4rem;
  padding-top: 0.6rem;
  border-top: 2px solid var(--gris-claro);
  font-size: 1rem;
  font-weight: 700;
}

.price-total span:last-child {
  color: var(--verde-principal);
  font-size: 1.3rem;
}

.btn-add-cart {
  width: 100%;
  padding: 1rem;
  background: var(--verde-principal);
  color: var(--blanco);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transicion);
  margin-bottom: 0.85rem;
}

.btn-add-cart:hover {
  background: var(--verde-oscuro);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 95, 46, 0.3);
}

.shipping-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gris);
  font-size: 0.85rem;
}

.shipping-note svg {
  flex-shrink: 0;
  color: var(--verde-principal);
}

.shipping-note-text {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--crema);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gris-oscuro);
  text-align: center;
}

/* ======== STORY SECTION ======== */
.story-section {
  padding: var(--espacio-2xl) 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  position: relative;
}

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

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

.story-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--dorado);
  color: var(--negro);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.story-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--negro);
  line-height: 1.2;
}

.alfajor-visual-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

/* ===== ALFAJOR REALISTA ===== */
.alfajor-realistic {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.cooking-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Vista superior del alfajor */
.alfajor-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(
    circle at 40% 40%,
    #f5e6d3 0%,
    #e8d4b8 40%,
    #dcc7a8 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15),
    inset 0 -3px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.alfajor-circle:hover {
  transform: scale(1.05) rotate(5deg);
}

/* Superficie de la galleta */
.cookie-surface {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}

/* Textura de migas */
.cookie-crumbs {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 25% 30%,
      rgba(220, 199, 168, 0.6) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(220, 199, 168, 0.5) 3px,
      transparent 3px
    ),
    radial-gradient(
      circle at 60% 75%,
      rgba(220, 199, 168, 0.7) 2.5px,
      transparent 2.5px
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(220, 199, 168, 0.4) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 85% 60%,
      rgba(220, 199, 168, 0.55) 2.5px,
      transparent 2.5px
    ),
    radial-gradient(
      circle at 40% 45%,
      rgba(220, 199, 168, 0.6) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 80% 85%,
      rgba(220, 199, 168, 0.5) 3px,
      transparent 3px
    );
  background-size: 100% 100%;
}

/* Grano de la galleta */
.cookie-grain {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.02) 2px,
      rgba(0, 0, 0, 0.02) 4px
    ),
    radial-gradient(
      circle at 30% 50%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 60%
    );
}

/* Relleno que sobresale */
.filling-edge {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 10px solid #c89865;
  opacity: 0.4;
  box-shadow: inset 0 2px 6px rgba(200, 152, 101, 0.8),
    0 0 0 2px rgba(212, 165, 116, 0.3);
  pointer-events: none;
}

/* Sombra del alfajor */
.alfajor-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 30px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
}

/* Corte transversal */
.alfajor-cross-section {
  display: flex;
  flex-direction: column;
  width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section-layer {
  position: relative;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicion);
}

.section-layer:hover {
  padding-left: 2rem;
}

.section-top {
  background: linear-gradient(90deg, #f5e6d3 0%, #e8d4b8 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-filling {
  background: linear-gradient(90deg, #d4a574 0%, #c89865 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
}

.section-bottom {
  background: linear-gradient(90deg, #e8d4b8 0%, #d4b998 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.layer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== DETAILS CARDS ===== */
.alfajor-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  background: var(--blanco);
  border-radius: 12px;
  border: 1px solid var(--gris-claro);
  transition: var(--transicion);
}

.detail-card:hover {
  transform: translateX(10px);
  border-color: var(--dorado);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.detail-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--crema);
  border-radius: 12px;
}

.detail-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
}

.detail-card p {
  color: var(--gris);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 968px) {
  .alfajor-visual-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .alfajor-circle {
    width: 260px;
    height: 260px;
  }

  .alfajor-cross-section {
    width: 100%;
  }
}

/* ======== INGREDIENTS - NUEVO DISEÑO ======== */
.ingredients-section {
  padding: 4rem 0;
  background: var(--crema);
}

.ingredients-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: center;
}

/* Lado izquierdo - Imagen */
.ingredients-visual {
  position: relative;
}

.ingredients-image-box {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(45, 95, 46, 0.1);
}

.ingredients-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.ingredients-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: var(--verde-principal);
  color: var(--blanco);
  padding: 1.5rem;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 95, 46, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  display: block;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lado derecho - Info */
.ingredients-info {
  padding: 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--verde-principal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.ingredients-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--negro);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.ingredients-intro {
  font-size: 1rem;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.ingredient-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--blanco);
  border-radius: 12px;
  border-left: 3px solid var(--verde-principal);
  transition: var(--transicion);
}

.ingredient-row:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left-color: var(--dorado);
}

.ingredient-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.ingredient-text h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.25rem;
}

.ingredient-text p {
  font-size: 0.875rem;
  color: var(--gris);
  line-height: 1.4;
}

.ingredients-highlights {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--gris-claro);
}

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

.highlight-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--verde-principal);
  margin-bottom: 0.25rem;
}

.highlight-box span {
  display: block;
  font-size: 0.75rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ======== FOOTER ======== */
.footer {
  padding: var(--espacio-xl) 0 var(--espacio-lg);
  background: var(--negro);
  color: var(--blanco);
}

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

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dorado);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--dorado);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: var(--transicion);
}

.footer-col a:hover {
  color: var(--blanco);
  padding-left: 5px;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  html {
    background-color: var(--negro);
  }

  body {
    background-color: var(--negro);
  }

  /* Header fijo pero optimizado para móvil */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0;
    min-height: 45px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.25s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    z-index: 9999;
  }

  .navbar.hide {
    transform: translate3d(0, -100%, 0);
  }

  .hero-banner {
    display: block;
    padding: 0;
    overflow: hidden;
  }

  .hero-video-wrapper {
    width: 100%;
  }

  .nav-container {
    padding: 0.25rem 1rem;
    min-height: 45px;
    justify-content: space-between;
  }

  .nav-left {
    flex: 0 0 auto;
  }

  .nav-logo {
    height: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Deshabilitar interacción en móvil */
  }

  .nav-right {
    flex: 0 0 auto;
  }

  .btn-cart {
    padding: 0.4rem 0.6rem;
  }

  .cart-badge {
    top: -3px;
    right: -3px;
    font-size: 0.6rem;
    padding: 0.1rem 0.3rem;
  }

  .btn-cart svg {
    width: 16px;
    height: 16px;
  }

  /* Menu hamburguesa móvil */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    gap: 4px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blanco);
    transition: 0.3s;
  }

  .nav-center {
    display: none;
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0;
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-center.active {
    display: flex;
  }

  .nav-center a {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-center a:last-child {
    border-bottom: none;
  }

  .hero-tag-top {
    display: none;
  }

  .hero-heading {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }

  /* ===== PRODUCT SHOWCASE MÓVIL ===== */
  .product-showcase {
    min-height: auto;
    padding: 0;
    position: relative;
    margin-top: 0;
    display: block;
    background: linear-gradient(
      to bottom,
      var(--crema) 0%,
      var(--crema) 90%,
      transparent 100%
    );
  }

  .showcase-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .showcase-left {
    height: auto;
    order: 1;
  }

  .product-image-main {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .product-image-main img {
    width: 100%;
    height: auto;
    display: block;
  }

  .image-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--dorado);
    color: var(--blanco);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .showcase-right {
    height: auto;
    order: 2;
  }

  .product-info-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-category {
    font-size: 0.7rem;
    color: var(--dorado);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
    display: block;
  }

  .product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 0.25rem;
    line-height: 1.2;
  }

  .product-tagline {
    font-size: 0.875rem;
    color: var(--gris-oscuro);
    margin-bottom: 1rem;
  }

  .product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.02);
    padding: 0.5rem;
    border-radius: 6px;
  }

  .highlight-icon {
    width: 16px;
    height: 16px;
    background: var(--verde-principal);
    color: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
  }

  .highlight-text {
    font-size: 0.8rem;
    color: var(--negro);
    font-weight: 500;
  }

  .quantity-box {
    margin-bottom: 1rem;
  }

  .quantity-box label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--negro);
    margin-bottom: 0.5rem;
  }

  .quantity-control {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    width: fit-content;
    background: var(--blanco);
  }

  .quantity-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--negro);
    font-weight: 600;
  }

  .quantity-input {
    width: 55px;
    text-align: center;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    background: transparent;
  }

  .price-breakdown {
    background: var(--blanco);
    padding: 0.875rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gris-oscuro);
    margin-bottom: 0.4rem;
  }

  .price-row:last-child {
    margin-bottom: 0;
  }

  .price-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--negro);
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0.4rem;
  }

  .btn-add-cart {
    width: 100%;
    padding: 0.875rem;
    background: var(--verde-principal);
    color: var(--blanco);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }

  .btn-add-cart:active {
    transform: scale(0.98);
    background: var(--verde-oscuro);
  }

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

  .ingredients-visual {
    order: -1;
  }

  .ingredients-highlights {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-container {
    padding: 0 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .footer-col h4 {
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }

  .footer-col a {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .footer-col a:hover {
    padding-left: 0;
    transform: translateY(-2px);
  }

  .footer-bottom {
    padding-top: 1rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

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

  .nav-logo {
    height: 35px;
  }

  .product-name {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .ingredients-badge {
    width: 90px;
    height: 90px;
    top: 1rem;
    right: 1rem;
  }

  .badge-text {
    font-size: 0.65rem;
  }

  .ingredient-row {
    padding: 1rem;
  }
}

/* ======== CART PAGE ======== */
.cart-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: var(--espacio-2xl);
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

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

.cart-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--negro);
  margin-bottom: 3rem;
  text-align: center;
}

/* Carrito vacío */
.empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.empty-cart svg {
  color: var(--gris-claro);
  margin-bottom: 2rem;
}

.empty-cart h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--negro);
  margin-bottom: 1rem;
}

.empty-cart p {
  color: var(--gris);
  margin-bottom: 2rem;
}

.btn-continue-shopping {
  padding: 1rem 2rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-continue-shopping:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

/* Carrito con productos */
.cart-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cart-items {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 2px solid var(--gris-claro);
  border-radius: 12px;
  transition: var(--transicion);
}

.cart-item:hover {
  border-color: var(--verde-claro);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
}

.cart-item-info p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--gris-oscuro);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: var(--crema);
  border-radius: 12px;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blanco);
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transicion);
}

.qty-btn:hover {
  border-color: var(--verde-principal);
  background: var(--verde-principal);
  color: var(--blanco);
}

.qty-btn svg {
  pointer-events: none;
}

.cart-item-quantity span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro);
  min-width: 30px;
  text-align: center;
}

.cart-item-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--verde-principal);
  min-width: 100px;
  text-align: right;
}

.cart-item-remove {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  cursor: pointer;
  color: var(--gris);
  transition: var(--transicion);
}

.cart-item-remove:hover {
  border-color: #c53030;
  background: #c53030;
  color: var(--blanco);
}

/* Resumen del carrito */
.cart-summary {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gris-claro);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--gris-oscuro);
}

.cart-summary-row span:last-child {
  font-weight: 600;
  color: var(--negro);
}

.cart-summary-divider {
  height: 1px;
  background: var(--gris-claro);
  margin: 1.5rem 0;
}

.cart-summary-total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde-principal);
  margin-top: 1rem;
}

.cart-summary-total span:last-child {
  color: var(--verde-principal);
  font-size: 1.75rem;
}

/* Desplegable de envío */
.shipping-select-container {
  margin: 1.5rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--gris-claro);
  border-bottom: 1px solid var(--gris-claro);
}

.shipping-select-container label {
  display: block;
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.shipping-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--negro);
  background: var(--blanco);
  cursor: pointer;
  transition: var(--transicion);
}

.shipping-select:focus {
  outline: none;
  border-color: var(--verde-principal);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.shipping-select:hover {
  border-color: var(--verde-claro);
}

.btn-checkout {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  margin-bottom: 1rem;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

.btn-continue {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: var(--verde-principal);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--verde-principal);
  border-radius: 12px;
  transition: var(--transicion);
}

.btn-continue:hover {
  background: var(--verde-principal);
  color: var(--blanco);
}

/* Responsive Cart */
@media (max-width: 968px) {
  .cart-content {
    grid-template-columns: 1fr;
  }

  .cart-section {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .cart-container {
    padding: 0 1rem;
  }

  .cart-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .cart-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cart-items {
    padding: 1rem;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem;
    position: relative;
  }

  .cart-item-img {
    width: 80px;
    height: 80px;
  }

  .cart-item-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .cart-item-info p {
    font-size: 0.8rem;
  }

  .cart-item-price {
    font-size: 0.85rem;
  }

  .cart-item-quantity {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .cart-item-total {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }

  .cart-item-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
  }

  .cart-item-remove svg {
    width: 16px;
    height: 16px;
  }

  .cart-summary {
    position: static;
    padding: 1.5rem;
  }

  .cart-summary h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }

  .cart-summary-row {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .cart-summary-total {
    font-size: 1.1rem;
  }

  .cart-summary-total span:last-child {
    font-size: 1.5rem;
  }

  .btn-checkout {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-continue {
    font-size: 0.9rem;
  }

  .empty-cart h2 {
    font-size: 1.5rem;
  }

  .empty-cart p {
    font-size: 0.9rem;
  }

  .btn-continue-shopping {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* ===== CHECKOUT MÓVIL ===== */
  .checkout-section {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .checkout-container {
    padding: 0 1rem;
  }

  .checkout-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-form-container {
    padding: 1.5rem;
  }

  .form-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

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

  .form-group input,
  .form-group select {
    font-size: 0.95rem;
    padding: 0.75rem;
  }

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

  .order-summary {
    padding: 1.5rem;
    position: static;
  }

  .order-summary h3 {
    font-size: 1.25rem;
  }

  .btn-place-order {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  /* ===== CONFIRMACIÓN MÓVIL ===== */
  .confirmation-section {
    padding-top: 80px;
    padding-bottom: 2rem;
  }

  .confirmation-container {
    padding: 0 1.5rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .confirmation-section h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .confirmation-section p {
    font-size: 0.95rem;
  }

  .order-details {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .order-details h2 {
    font-size: 1.25rem;
  }

  .detail-row {
    font-size: 0.9rem;
  }

  .btn-back-home {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ======== CHECKOUT PAGE ======== */
.checkout-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: var(--espacio-2xl);
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.checkout-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--negro);
  margin-bottom: 3rem;
  text-align: center;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ===== FORMULARIO ===== */
.checkout-form-container {
  background: var(--blanco);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
  margin-bottom: 2.5rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gris-claro);
}

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

.form-row:last-child {
  margin-bottom: 0;
}

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

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gris-oscuro);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transicion);
  background: var(--blanco);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--verde-principal);
  box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Métodos de pago */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  cursor: pointer;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--gris-claro);
  border-radius: 12px;
  transition: var(--transicion);
  background: var(--blanco);
}

.payment-option input[type="radio"]:checked + .payment-card {
  border-color: var(--verde-principal);
  background: rgba(45, 80, 22, 0.05);
}

.payment-card:hover {
  border-color: var(--verde-claro);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-card svg {
  color: var(--verde-principal);
  flex-shrink: 0;
}

.payment-card span {
  font-weight: 500;
  color: var(--negro);
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.95rem;
  color: var(--gris-oscuro);
  line-height: 1.6;
}

.checkbox-label a {
  color: var(--verde-principal);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Botón de envío */
.btn-submit-order {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-submit-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

.btn-submit-order:active {
  transform: translateY(0);
}

.btn-submit-order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===== RESUMEN DEL PEDIDO ===== */
.order-summary {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
}

.summary-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gris-claro);
}

.summary-product {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.summary-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.summary-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
}

.summary-info p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 0.25rem;
}

.summary-quantity {
  font-weight: 600;
  color: var(--gris-oscuro);
}

.summary-divider {
  height: 1px;
  background: var(--gris-claro);
  margin: 1.5rem 0;
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--gris-oscuro);
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--negro);
}

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--gris-claro);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde-principal);
}

.summary-total span:last-child {
  color: var(--verde-principal);
  font-size: 1.5rem;
}

.summary-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--crema);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--gris-oscuro);
}

.summary-note svg {
  color: var(--verde-principal);
  flex-shrink: 0;
}

/* Toast de error */
.error-toast {
  animation: slideIn 0.3s ease;
}

/* Responsive Checkout */
@media (max-width: 968px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .checkout-section {
    padding: 100px 0 var(--espacio-lg);
  }

  .checkout-form-container {
    padding: 1.5rem;
  }

  .order-summary {
    padding: 1.5rem;
  }
}

/* ======== CONFIRMATION PAGE ======== */
.confirmation-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: var(--espacio-2xl);
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.confirmation-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

/* Icono de éxito */
.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: successPulse 0.6s ease;
}

.success-icon svg {
  color: var(--blanco);
}

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

.confirmation-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--negro);
  margin-bottom: 1rem;
}

.confirmation-subtitle {
  font-size: 1.15rem;
  color: var(--gris);
  margin-bottom: 2rem;
}

.confirmation-number {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 3rem;
  background: var(--crema);
  border-radius: 12px;
  margin-bottom: 3rem;
}

.number-label {
  font-size: 0.9rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.number-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--verde-principal);
}

/* Detalles del pedido */
.confirmation-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: left;
}

.details-section {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.details-section h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gris-claro);
}

.order-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gris-claro);
}

.order-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.order-item-info {
  flex: 1;
}

.order-item-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.25rem;
}

.order-item-info p {
  font-size: 0.9rem;
  color: var(--gris);
  margin-bottom: 0.25rem;
}

.order-item-qty {
  font-weight: 600;
  color: var(--gris-oscuro);
}

.order-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--verde-principal);
  align-self: center;
}

.order-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--gris-oscuro);
}

.breakdown-row span:last-child {
  font-weight: 600;
  color: var(--negro);
}

.breakdown-total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--gris-claro);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--verde-principal);
}

.breakdown-total span {
  color: var(--verde-principal);
}

/* Información de envío */
.shipping-info {
  margin-bottom: 1.5rem;
}

.shipping-info p {
  font-size: 0.95rem;
  color: var(--gris-oscuro);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.shipping-info strong {
  color: var(--negro);
}

.payment-method h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
}

.payment-method p {
  font-size: 0.95rem;
  color: var(--gris-oscuro);
}

/* Info boxes */
.confirmation-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--crema);
  border-radius: 12px;
  text-align: left;
}

.info-box svg {
  color: var(--verde-principal);
  flex-shrink: 0;
}

.info-box h4 {
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--gris-oscuro);
  line-height: 1.5;
}

.info-box strong {
  color: var(--verde-principal);
}

/* Botones */
.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-home {
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

.btn-print {
  padding: 1rem 2rem;
  background: var(--blanco);
  color: var(--verde-principal);
  font-family: var(--font-display);
  font-weight: 600;
  border: 2px solid var(--verde-principal);
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transicion);
}

.btn-print:hover {
  background: var(--verde-principal);
  color: var(--blanco);
}

/* Responsive Confirmation */
@media (max-width: 768px) {
  .confirmation-details {
    grid-template-columns: 1fr;
  }

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

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

  .btn-home,
  .btn-print {
    width: 100%;
    justify-content: center;
  }
}

/* ======== LEGAL PAGES ======== */
.legal-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: var(--espacio-2xl);
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--negro);
  margin-bottom: 0.5rem;
  text-align: center;
}

.legal-updated {
  text-align: center;
  color: var(--gris);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content {
  background: var(--blanco);
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--negro);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--gris-oscuro);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  color: var(--gris-oscuro);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--negro);
  font-weight: 600;
}

.legal-content a {
  color: var(--verde-principal);
  text-decoration: none;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Tabla de cookies */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.cookie-table thead {
  background: var(--crema);
}

.cookie-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--negro);
  border-bottom: 2px solid var(--gris-claro);
}

.cookie-table td {
  padding: 1rem;
  color: var(--gris-oscuro);
  border-bottom: 1px solid var(--gris-claro);
}

.cookie-table tbody tr:hover {
  background: var(--crema);
}

/* Botón volver */
.legal-back {
  text-align: center;
}

.btn-back {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--verde-claro) 0%,
    var(--verde-principal) 100%
  );
  color: var(--blanco);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transicion);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 80, 22, 0.4);
}

/* Responsive Legal */
@media (max-width: 768px) {
  .legal-content {
    padding: 2rem 1.5rem;
  }

  .cookie-table {
    font-size: 0.85rem;
  }

  .cookie-table th,
  .cookie-table td {
    padding: 0.75rem 0.5rem;
  }
}

/* ======== MODAL CONFIRMACIÓN ======== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-confirm {
  background: var(--blanco);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-confirm {
  transform: scale(1);
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon svg {
  color: var(--blanco);
}

.modal-confirm h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.75rem;
}

.modal-confirm p {
  color: var(--gris);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

.btn-cancel,
.btn-confirm {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transicion);
  border: none;
}

.btn-cancel {
  background: var(--gris-claro);
  color: var(--negro);
}

.btn-cancel:hover {
  background: #d0d0d0;
}

.btn-confirm {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: var(--blanco);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-confirm:active {
  transform: translateY(0);
}

/* Responsive Modal */
@media (max-width: 480px) {
  .modal-confirm {
    padding: 2rem 1.5rem;
  }

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

  .btn-cancel,
  .btn-confirm {
    width: 100%;
  }
}

/* ========================================
   SOBRE NOSOTROS - ESTILO PERIÓDICO
======================================== */

.about-section {
  padding: 8rem 2rem 6rem;
  background: var(--crema);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(45, 95, 46, 0.02) 2px,
    rgba(45, 95, 46, 0.02) 4px
  );
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--blanco);
  padding: 4rem;
  box-shadow: 0 0 40px rgba(45, 95, 46, 0.1);
}

.about-header {
  border-bottom: 4px double var(--verde-principal);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.about-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: var(--verde-principal);
  color: var(--blanco);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-family: var(--font-principal);
}

.about-header h1 {
  font-family: "Cinzel", serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--negro);
  margin-bottom: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.about-subtitle {
  font-size: 1.375rem;
  color: var(--gris-oscuro);
  font-style: italic;
  font-weight: 500;
  border-left: 3px solid var(--dorado);
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Story Blocks - Estilo columnas de periódico */
.about-story {
  column-count: 2;
  column-gap: 3rem;
  column-rule: 1px solid var(--gris-claro);
}

.story-block {
  break-inside: avoid;
  margin-bottom: 2.5rem;
  page-break-inside: avoid;
}

.story-icon {
  display: block;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.story-icon img {
  display: block;
  width: 60px;
  height: auto;
}

.story-block h2 {
  font-family: "Cinzel", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--negro);
  padding-bottom: 0.5rem;
}

.story-block p {
  font-size: 1.0625rem;
  color: var(--gris-oscuro);
  line-height: 1.75;
  text-align: justify;
  font-family: "Georgia", serif;
  hyphens: auto;
}

.story-block p::first-letter {
  font-size: 3rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.4rem;
  margin-top: 0.1rem;
  font-family: "Cinzel", serif;
}

/* Values Section - Estilo anuncio de periódico */
.about-values {
  background: var(--crema);
  padding: 3rem;
  border: 3px solid var(--verde-principal);
  margin-top: 2rem;
}

.about-values h2 {
  font-family: "Cinzel", serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--negro);
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid var(--negro);
  padding-bottom: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--blanco);
  padding: 2rem;
  border: 2px solid var(--verde-principal);
  text-align: left;
}

.value-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--verde-principal),
    var(--verde-claro)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  stroke: var(--blanco);
}

.value-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--negro);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value-card p {
  color: var(--gris-oscuro);
  line-height: 1.6;
  font-family: "Georgia", serif;
}

/* CTA Section - Estilo anuncio destacado */
.about-cta {
  text-align: center;
  padding: 3rem;
  background: linear-gradient(
    135deg,
    var(--verde-principal),
    var(--verde-oscuro)
  );
  border: 5px double var(--dorado);
  color: var(--blanco);
  margin-top: 2rem;
}

.about-cta h2 {
  font-family: "Cinzel", serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.about-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  font-style: italic;
  opacity: 0.9;
}

.btn-primary-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: var(--dorado);
  color: var(--blanco);
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transicion);
  border: 3px solid var(--dorado);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-primary-cta:hover {
  background: var(--blanco);
  color: var(--verde-principal);
  border-color: var(--dorado);
}

/* Responsive About */
@media (max-width: 768px) {
  .about-section {
    padding: 5rem 1rem 4rem;
  }

  .about-container {
    padding: 2rem 1.5rem;
  }

  .about-header h1 {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1.125rem;
  }

  .about-story {
    column-count: 1;
  }

  .story-block h2 {
    font-size: 1.5rem;
  }

  .about-values {
    padding: 2rem 1.5rem;
  }

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

  .about-cta {
    padding: 2.5rem 1.5rem;
  }

  .about-cta h2 {
    font-size: 2rem;
  }
}
