* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #2c3b3a;
  --panel: rgba(22, 87, 107, 0.3);
  --panel2: #5717a0;
  --text: #f5f7ff;
  --muted: #aeb6d2;
  --blue: #17a6e9;
  --purple: #8d3cff;
  --yellow: #d4cae0;
  --green: #25d366;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at 70% 15%, #15635f 0, #3a0a46 35%, var(--bg) 70%);
  background-size: 200% 200%;
  animation: moverLuz 8s ease-in-out infinite alternate;
  color: var(--text);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px 5%;
  background: rgba(3, 5, 14, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #223d48;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.logo b,
.footer-logo b {
  color: var(--yellow);
}

.logo-gem {
  font-size: 34px;
  color: #3425ff;
  text-shadow: 0 0 18px #352caf;
}

nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}

nav a {
  font-size: 14px;
  color: #dce2ff;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--yellow);
}

.whatsapp-top {
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  background: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-top:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
}

.menu-btn {
  display: none;
  background: none;
  color: #fff;
  border: 0;
  font-size: 25px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 70px 7%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(4, 7, 18, .98), rgba(5, 7, 20, .62)),
    radial-gradient(circle at 75% 45%, #5a20a8, transparent 38%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
  z-index: 0;
  animation: bgShift 10s ease-in-out infinite;
}

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

.hero-content,
.hero-art,
.promo-box {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .98;
  margin: 15px 0;
}

.hero h1 span {
  background: linear-gradient(45deg, #ff6b6b, #ffd93d, #4da6ff, #ff6b6b);
  background-size: 300% 300%;
  animation: gradientShift 4s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-text {
  font-size: 20px;
  color: #dce1f7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

/* ===== BOTONES ===== */
.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 900;
  border: 1px solid #4d5a8a;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.primary {
  background: linear-gradient(135deg, #8131a0, #d4d4c9);
  color: #090b13;
  border: 0;
}

.secondary {
  background: #10162c;
  color: #fff;
}

/* ===== HERO ART ===== */
.hero-art {
  height: 430px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: #147cff;
  filter: blur(70px);
  opacity: .42;
}

.character-placeholder {
  width: 230px;
  height: 320px;
  border-radius: 45% 45% 25% 25%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 52px;
  font-weight: 1000;
  color: #fff;
  background: linear-gradient(145deg, #252d7e, #17152e 48%, #4d10a2);
  box-shadow: 0 0 55px #5420c7;
  transform: skew(-3deg);
}

/* ===== DIAMANTES FLOTANTES ===== */
.floating-gem {
  position: absolute;
  color: #053b4b;
  font-size: 55px;
  text-shadow: 0 0 25px #c42510;
  animation: floatGem 3s ease-in-out infinite;
}

.floating-gem.gem1 {
  top: 55px;
  left: 10%;
  animation-delay: 0s;
}

.floating-gem.gem2 {
  right: 5%;
  top: 45%;
  animation-delay: 1s;
}

.floating-gem.gem3 {
  bottom: 20px;
  left: 25%;
  animation-delay: 2s;
}

@keyframes floatGem {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* ===== PROMO BOX ===== */
.promo-box {
  position: absolute;
  right: 6%;
  bottom: 5px;
  background: rgba(19, 13, 42, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 66, 255, 0.4);
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: 0 0 25px rgba(69, 164, 180, 0.3);
  animation: pulsePromo 2s ease-in-out infinite;
}

@keyframes pulsePromo {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
  }
}

.promo-box strong {
  display: block;
  color: var(--yellow);
  font-size: 18px;
}

.promo-box span {
  color: #ddd;
}

/* ========================================== */
/* === ESTADÍSTICAS (Glassmorphism) === */
/* ========================================== */
.stats-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(15, 12, 41, 0.9), rgba(26, 26, 46, 0.9));
  backdrop-filter: blur(10px);
  text-align: center;
  border-top: 1px solid rgba(34, 61, 72, 0.3);
  border-bottom: 1px solid rgba(34, 61, 72, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.stat-item {
  position: relative;
  z-index: 1;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 215, 0, 0.15);
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: #ffd93d;
  font-variant-numeric: tabular-nums;
}

/* ========================================== */
/* === SECCIONES GENERALES === */
/* ========================================== */
.section {
  padding: 70px 6%;
  max-width: 1300px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title p {
  color: var(--yellow);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 32px;
  margin: 5px 0;
}

.section-title span {
  color: var(--muted);
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tab {
  padding: 12px 28px;
  border: 1px solid #3a4eb1;
  background: #0d1124;
  color: #ffffff;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  transform: scale(1.05);
  border-color: var(--yellow);
}

.tab.active {
  background: var(--yellow);
  color: #080a12;
  font-weight: 900;
}

/* ===== PRODUCTOS / TARJETAS ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  background: linear-gradient(160deg, rgba(17, 23, 46, 0.9), rgba(7, 10, 22, 0.9));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(48, 57, 87, 0.5);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.products .card:nth-child(1) {
  animation-delay: 0.1s;
}
.products .card:nth-child(2) {
  animation-delay: 0.2s;
}
.products .card:nth-child(3) {
  animation-delay: 0.3s;
}
.products .card:nth-child(4) {
  animation-delay: 0.4s;
}
.products .card:nth-child(5) {
  animation-delay: 0.5s;
}
.products .card:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
  border-color: rgba(255, 107, 107, 0.4);
}

.card.featured {
  border-color: rgba(177, 60, 255, 0.5);
  box-shadow: 0 0 35px rgba(146, 44, 255, .2);
}

.card.featured:hover {
  box-shadow: 0 0 60px rgba(146, 44, 255, .35);
}

.badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #e46982;
  padding: 5px 14px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 900;
  animation: pulseBadge 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(228, 105, 130, 0.3);
}

@keyframes pulseBadge {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.diamond-image {
  height: 120px;
  display: grid;
  place-items: center;
  font-size: 65px;
  text-shadow: 0 0 28px rgba(29, 191, 255, 0.3);
  animation: glowDiamond 3s ease-in-out infinite;
}

@keyframes glowDiamond {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(29, 191, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 50px rgba(29, 191, 255, 0.6);
  }
}

.chest {
  font-size: 52px;
}

.card h3 {
  font-size: 25px;
}

.card p {
  color: var(--muted);
  margin: 5px 0;
}

.price {
  display: block;
  color: var(--yellow);
  font-size: 25px;
  margin: 12px;
}

/* ===== BOTONES DE TARJETAS ===== */
.card button {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #47025c, #cebfce);
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
}

.card button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.card button:hover::after {
  transform: rotate(45deg) translateX(100%);
}

/* ===== BENEFICIOS ===== */
.benefits {
  max-width: none;
  background: linear-gradient(180deg, rgba(7, 9, 22, 0.95), rgba(11, 13, 29, 0.95));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  padding: 25px;
  background: rgba(22, 87, 107, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 44, 76, 0.4);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.15);
}

.benefit span {
  font-size: 35px;
}

.benefit h3 {
  margin: 8px 0;
}

.benefit p,
.step p,
.payment p,
.contact p {
  color: var(--muted);
}

/* ========================================== */
/* === TESTIMONIOS (Glassmorphism) === */
/* ========================================== */
.testimonials-section {
  background: linear-gradient(180deg, rgba(22, 33, 62, 0.9), rgba(15, 12, 41, 0.9));
  backdrop-filter: blur(10px);
  padding: 60px 20px;
  border-top: 1px solid rgba(34, 61, 72, 0.2);
  border-bottom: 1px solid rgba(34, 61, 72, 0.2);
}

.testimonial {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.15);
}

/* ===== PASOS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.step {
  position: relative;
  text-align: center;
  background: rgba(22, 87, 107, 0.2);
  backdrop-filter: blur(8px);
  padding: 25px 15px;
  border: 1px solid rgba(41, 48, 82, 0.4);
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.15);
}

.step>b {
  position: absolute;
  left: 12px;
  top: 10px;
  color: var(--yellow);
  font-size: 22px;
}

.step span {
  font-size: 35px;
  display: block;
  margin: 10px;
}

.step h3 {
  font-size: 17px;
}

/* ===== PAGOS ===== */
.payment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.payment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-list span {
  padding: 20px;
  background: rgba(13, 18, 38, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(48, 57, 87, 0.4);
  border-radius: 10px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.payment-list span:hover {
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
}

/* ========================================== */
/* === FAQ (Glassmorphism) === */
/* ========================================== */
.faq-section {
  background: linear-gradient(180deg, rgba(15, 12, 41, 0.95), rgba(11, 13, 29, 0.95));
  backdrop-filter: blur(10px);
  padding: 60px 20px;
  border-top: 1px solid rgba(34, 61, 72, 0.2);
  border-bottom: 1px solid rgba(34, 61, 72, 0.2);
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 215, 0, 0.1);
}

.faq-question {
  padding: 18px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-question span:first-child {
  color: #fff;
  font-weight: 600;
}

.faq-question span:last-child {
  color: #ff6b6b;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  color: #aaa;
  padding: 15px 0;
  line-height: 1.6;
}

/* ===== CONTACTO ===== */
.contact {
  text-align: center;
  background: radial-gradient(circle, rgba(48, 47, 58, 0.6), transparent 65%);
  max-width: none;
}

.contact>div {
  max-width: 700px;
  margin: auto;
}

.contact .btn {
  margin-top: 20px;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 45px 6%;
  background: rgba(3, 5, 12, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(32, 39, 68, 0.4);
  color: var(--muted);
}

.footer-logo {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 900;
}

footer a {
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: #ff6b6b !important;
  transform: translateY(-2px);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px;
}

.socials span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(18, 24, 45, 0.7);
  backdrop-filter: blur(5px);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.socials span:hover {
  background: var(--yellow);
  color: #000;
  transform: scale(1.1);
  border-color: rgba(255, 215, 0, 0.3);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: min(450px, 100%);
  background: rgba(11, 16, 33, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(74, 86, 130, 0.4);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.modal-box h2 {
  margin-bottom: 10px;
}

.modal-box label {
  display: block;
  margin: 15px 0 6px;
  font-weight: 700;
}

.modal-box input {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(57, 67, 99, 0.5);
  background: rgba(7, 10, 22, 0.7);
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.modal-box input:focus {
  border-color: var(--blue);
}

.full {
  width: 100%;
  margin-top: 20px;
}

.modal-box small {
  display: block;
  color: #7f89ab;
  text-align: center;
  margin-top: 12px;
}

.close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.close:hover {
  transform: rotate(90deg);
  color: #ff6b6b;
}

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

@media(max-width:950px) {
  nav {
    display: none;
  }
  .whatsapp-top {
    margin-left: auto;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }
  .hero-art {
    height: 330px;
  }
  .promo-box {
    right: 5%;
    bottom: 5px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment {
    grid-template-columns: 1fr;
  }
  .stats-section div {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media(max-width:600px) {
  .navbar {
    padding: 12px 4%;
  }
  .logo {
    font-size: 15px;
  }
  .logo-gem {
    font-size: 26px;
  }
  .whatsapp-top {
    display: none;
  }
  .hero {
    padding: 50px 5%;
    display: block;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-art {
    height: 270px;
    margin-top: 20px;
  }
  .character-placeholder {
    width: 170px;
    height: 230px;
    font-size: 35px;
  }
  .promo-box {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .products,
  .benefit-grid,
  .steps {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 50px 5%;
  }
  .payment-list {
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 27px;
  }
  .stats-section div {
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
  }
  .stat-number {
    font-size: 28px !important;
  }
}

/* ===== ANIMACIONES GLOBALES ===== */
@keyframes moverLuz {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 100%;
  }
}

.card img,
.card .diamond-icon {
  animation: flotarDiamante 3s ease-in-out infinite;
}

@keyframes flotarDiamante {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}/* ========================================== */
/* === TESTIMONIOS CARRUSEL === */
/* ========================================== */

.testimonials-carousel-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 40px;
  position: relative;
}

.testimonials-carousel {
  display: flex;
  gap: 25px;
  animation: carouselScroll 30s linear infinite;
  width: max-content;
}

.testimonials-carousel:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Tarjeta de testimonio en el carrusel */
.testimonial-card {
  min-width: 320px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card .stars {
  color: #ffd93d;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card .comment-text {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card .author-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-card .author-date {
  color: #666;
  font-size: 11px;
}

/* ===== FORMULARIO DE TESTIMONIO ===== */
.testimonial-form-container {
  max-width: 600px;
  margin: 30px auto 0;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-form-container h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonial-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 215, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #666;
}

/* ===== ESTRELLAS INTERACTIVAS ===== */
.star-rating {
  display: flex;
  gap: 8px;
  font-size: 30px;
  cursor: pointer;
}

.star-rating .star {
  color: #444;
  transition: all 0.2s ease;
  user-select: none;
}

.star-rating .star.active {
  color: #ffd93d;
  transform: scale(1.1);
}

.star-rating .star:hover {
  transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    max-width: 280px;
  }
  
  .testimonial-form-container {
    padding: 20px;
    margin: 20px 10px 0;
  }
  
  .star-rating {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .testimonial-card {
    min-width: 240px;
    max-width: 240px;
    padding: 18px;
  }
  
  .testimonial-card .comment-text {
    font-size: 13px;
  }
}