:root {
  --bg: #fff6f9;
  --surface: #ffffff;
  --pink-strong: #ef2e70;
  --pink-soft: #ffc4d8;
  --brand-blue: #12a8e0;
  --brand-blue-deep: #068dc2;
  --green: #2f8f4e;
  --green-dark: #246f3c;
  --ink: #151515;
  --muted: #4f4f4f;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 40px rgba(239, 46, 112, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, #e6f7ff 0, #e6f7ff 25%, transparent 26%),
    radial-gradient(circle at 85% 20%, #ffd0e2 0, #ffd0e2 20%, transparent 21%),
    radial-gradient(circle at 30% 85%, #dff4ff 0, #dff4ff 22%, transparent 23%),
    var(--bg);
}

img,
video {
  display: block;
  max-width: 100%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ffd4e4;
}

.brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(70px, 16vw, 180px);
  height: auto;
}

.brand-fallback {
  font-weight: 900;
  color: var(--brand-blue);
  font-size: clamp(1rem, 2vw, 1.45rem);
}

.brand-note {
  margin: 0;
  color: var(--brand-blue-deep);
  font-weight: 900;
}

.global-discount {
  margin: 0 0 0.65rem;
  display: inline-block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  background: linear-gradient(90deg, #ef2e70 0%, #ff5f97 100%);
  color: #fff;
  box-shadow: 0 12px 25px rgba(239, 46, 112, 0.28);
}

.hero {
  min-height: 88vh;
}

.hero-content,
.hero-date,
.section,
.footer {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.hero-content {
  margin-top: 4rem;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.45rem 0.95rem;
  background: #fff;
  border: 2px solid var(--brand-blue);
  border-radius: 999px;
  color: var(--brand-blue);
  font-weight: 900;
}

h1 {
  margin: 1rem 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

.subtitle {
  max-width: 70ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.22rem);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-wa,
.btn-wa-card {
  text-decoration: none;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary,
.btn-secondary,
.btn-wa {
  padding: 0.85rem 1.2rem;
}

.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 168, 224, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-blue-deep);
  border: 2px solid var(--brand-blue);
}

.btn-wa {
  background: var(--green);
  color: #fff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-wa:hover,
.btn-wa-card:hover {
  transform: translateY(-2px);
}

.hero-date {
  margin-top: 2rem;
  padding: 1.3rem;
  background: linear-gradient(130deg, #ffffff 0%, #e8f8ff 100%);
  border: 2px solid #ccefff;
  border-radius: var(--radius-lg);
}

.date-number {
  margin: 0;
  font-family: "Pacifico", cursive;
  color: var(--brand-blue);
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
}

.date-text {
  margin: 0.5rem 0;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.promo-note {
  margin: 0;
  color: var(--brand-blue-deep);
  font-weight: 800;
}

.section {
  margin-top: 4.2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
}

.section-head p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.gallery-grid,
.cards-grid,
.reviews-grid,
.videos-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.2rem;
}

.gallery-grid {
  grid-template-columns: repeat(12, 1fr);
}

.photo-card {
  grid-column: span 4;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid #ccefff;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 10px 25px rgba(18, 168, 224, 0.1);
}

.card h3 {
  margin: 0.8rem 0 0.2rem;
}

.card p {
  margin: 0.2rem 0;
}

.price {
  color: var(--brand-blue-deep);
  font-size: 1.55rem;
  font-weight: 900;
}

.old-price {
  color: #888;
  text-decoration: line-through;
  font-weight: 800;
}

.btn-wa-card {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.72rem 1rem;
  background: var(--green);
  color: #fff;
}

.paquete-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tag {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-card {
  border-radius: var(--radius-lg);
  border: 2px solid #ffd3e3;
  background: linear-gradient(130deg, #fff 0%, #fff1f7 62%, #ffe5f0 100%);
  padding: clamp(1rem, 2.2vw, 1.7rem);
  box-shadow: 0 12px 28px rgba(239, 46, 112, 0.16);
}

.countdown-kicker {
  margin: 0;
  color: #c21f58;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.84rem;
}

.countdown-card h2 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.time-box {
  min-width: 94px;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #ffcde0;
  text-align: center;
}

.time-box span {
  display: block;
  line-height: 1;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
  font-weight: 900;
  color: #ef2e70;
}

.time-box small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #b93b63;
  text-transform: uppercase;
  font-weight: 800;
}

.countdown-copy {
  margin: 0.85rem 0 0;
  color: #5c5c5c;
  font-size: 0.94rem;
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card,
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8f2ff;
}

.videos-grid {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.video-card video {
  width: 100%;
  height: 100%;
  background: #e6f7ff;
  aspect-ratio: 16 / 9;
}

.footer {
  margin-top: 4rem;
  margin-bottom: 2.2rem;
  border: 2px solid #ccefff;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, #e8f8ff 0%, #ffffff 100%);
  padding: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer p {
  margin: 0;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- NUEVAS SECCIONES OPTIMIZADAS --- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 1.5rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid #ccefff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 8px 20px rgba(18, 168, 224, 0.05);
  position: relative;
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(18, 168, 224, 0.3);
}

.step-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
}

.step-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Configurador Interactivo */
.configurador-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  background: var(--surface);
  border: 2px solid #ccefff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(18, 168, 224, 0.08);
  margin-top: 1.5rem;
}

.configurador-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f4faff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 2px dashed #b2e4ff;
  position: relative;
}

.configurador-preview img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.preview-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--pink-strong);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(239, 46, 112, 0.3);
}

.configurador-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-group select {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 2px solid #ccefff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  outline: none;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-group select:focus {
  border-color: var(--brand-blue);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-label span {
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  border: 2px solid #ccefff;
  background: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  user-select: none;
}

.radio-label input[type="radio"]:checked + span {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(18, 168, 224, 0.25);
}

.price-summary {
  background: #fff9fb;
  border: 1px solid #ffd4e4;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}

.summary-row strong {
  font-size: 1.3rem;
  color: var(--brand-blue-deep);
  font-weight: 900;
}

.anticipo-row strong {
  color: var(--pink-strong);
  font-size: 1.4rem;
}

.summary-note {
  margin: 0.3rem 0 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}

.btn-config-wa {
  display: block;
  text-align: center;
  padding: 0.9rem;
  background: var(--green);
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 10px 25px rgba(47, 143, 78, 0.3);
}

.btn-config-wa:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Testimonios y Opiniones */
.review-card-item {
  background: var(--surface);
  border: 1px solid #ccefff;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(18, 168, 224, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-blue);
}

.review-user-info h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
}

.rating-stars {
  color: #f2b01e;
  font-size: 0.85rem;
  margin-top: 2px;
  letter-spacing: 2px;
}

.review-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--muted);
  font-style: italic;
}

/* Preguntas Frecuentes FAQ */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 1.5rem auto 0;
}

.faq-item {
  background: var(--surface);
  border: 1px solid #ccefff;
  border-radius: 12px;
  padding: 0.5rem 1.2rem;
  transition: all 0.2s ease;
}

.faq-item[open] {
  box-shadow: 0 8px 20px rgba(18, 168, 224, 0.06);
  border-color: var(--brand-blue);
}

.faq-question {
  font-weight: 800;
  padding: 0.8rem 0;
  cursor: pointer;
  user-select: none;
  font-size: 1.02rem;
  outline: none;
}

.faq-answer {
  padding-bottom: 0.8rem;
  border-top: 1px solid #f0f9ff;
  margin-top: 0.2rem;
}

.faq-answer p {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Insignias de confianza */
.trust-badges-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.badges-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: #ffffff;
  border: 2px solid #ffd4e4;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(239, 46, 112, 0.08);
  text-align: center;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge-icon {
  font-size: 2.2rem;
}

.badge-item h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.badge-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Modificaciones adicionales a tarjetas */
.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid #e6f5ff;
}

.card-deposit {
  margin: 0.4rem 0 0.6rem 0 !important;
  font-size: 0.8rem !important;
  color: var(--pink-strong) !important;
  font-weight: 800;
  background: #ffe6f0;
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.paquete-desc {
  font-weight: 800;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pestañas (Tabs) de Formatos */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 1.8rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--surface);
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue-deep);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  outline: none;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(18, 168, 224, 0.15);
}

.tab-btn.active {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 168, 224, 0.25);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Sección Video del Plotter en Grande */
.plotter-video-container {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(18, 168, 224, 0.15);
  border: 2px solid #ccefff;
  background: #f4faff;
  aspect-ratio: 16 / 9;
}

.plotter-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.size-detail {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.2rem 0;
}

@media (max-width: 768px) {
  .configurador-container {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    gap: 20px;
  }
}

@media (max-width: 880px) {
  .brand-logo {
    width: clamp(90px, 22vw, 140px);
  }

  .photo-card {
    grid-column: span 6;
  }

  .topbar {
    padding-inline: 4vw;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: clamp(80px, 30vw, 120px);
  }

  .brand-fallback {
    display: none;
  }

  .photo-card {
    grid-column: span 12;
  }

  .hero-content {
    margin-top: 2rem;
  }

  .footer {
    text-align: center;
    justify-content: center;
  }
}

/* --- LIGHTBOX MODAL PARA FOTOS REALES --- */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(21, 21, 21, 0.95);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5);
  animation: lightboxScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes lightboxScale {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-carousel-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid #e6f5ff;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: var(--ink);
  font-size: 2.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  user-select: none;
  line-height: 1;
}

.carousel-control:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 5px 0 10px 0;
  z-index: 10;
}

.indicator-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.indicator-dot.active {
  background: var(--brand-blue);
  transform: scale(1.15);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #888;
  font-size: 35px;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
  z-index: 1010;
}

.lightbox-close:hover {
  color: var(--pink-strong);
}

.lightbox-caption {
  font-size: 0.98rem;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  margin-top: 5px;
  line-height: 1.4;
  padding: 0 10px;
}

.lightbox-wa-btn {
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(47, 143, 78, 0.25);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.lightbox-wa-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.card-img-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #f4faff;
  border: 1px solid #e6f5ff;
}

.card-img-container .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-img-container:hover .card-img {
  transform: scale(1.04);
}

.view-photos-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(21, 21, 21, 0.8);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
  user-select: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-img-container:hover .view-photos-badge {
  background: var(--pink-strong);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(239, 46, 112, 0.35);
  border-color: transparent;
}

.lightbox-trigger {
  cursor: pointer;
}

/* --- OPTIMIZACIÓN EXTRA MÓVIL (PANTALLAS CHICAS) --- */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.1;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
  
  .tabs-container {
    gap: 8px;
    width: 100%;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 1rem;
  }
  
  .configurador-container {
    padding: 1rem;
  }
  
  .configurador-preview {
    padding: 1rem;
  }
  
  .lightbox-content-wrapper {
    padding: 15px;
    max-width: 95%;
  }
  
  .lightbox-close {
    top: 5px;
    right: 15px;
  }
}
