/* ==============================
   CONTADOR REGRESIVO
================================ */

.countdown-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a0000, #000);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(139, 0, 0, 0.1), transparent 50%);
  pointer-events: none;
}

.countdown-section h2 {
  color: var(--gold);
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 1;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.countdown-item {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(11, 11, 11, 0.8));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 30px 40px;
  min-width: 140px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.6s ease;
}

.countdown-item:hover::before {
  left: 100%;
}

.countdown-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  transform: translateY(-10px);
}

.countdown-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.countdown-label {
  display: block;
  font-size: 0.95rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* ==============================
   GALERÍA DE IMÁGENES
================================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(139, 0, 0, 0.6),
    rgba(212, 175, 55, 0.6)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.2);
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* Overlay con texto */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.gallery-overlay p {
  color: var(--white);
  font-size: 0.9rem;
}

/* ==============================
   TESTIMONIOS / REVIEWS
================================ */

.testimonials {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0a0000, #000);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 300px;
  color: rgba(212, 175, 55, 0.05);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(20, 0, 0, 0.4), rgba(11, 11, 11, 0.6));
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.3rem;
  color: #e8e8e8;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
}

.testimonial-author {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.testimonial-role {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ==============================
   PRECIOS / PRICING
================================ */

.pricing {
  padding: 100px 40px;
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(20, 0, 0, 0.6), rgba(11, 11, 11, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-title {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.pricing-price {
  font-size: 3.5rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  color: var(--gray);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  margin-right: 10px;
  font-weight: bold;
}

/* ==============================
   FAQ / PREGUNTAS FRECUENTES
================================ */

.faq {
  padding: 100px 40px;
  background: linear-gradient(180deg, #000, #0a0000);
}

.faq-container {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  background: linear-gradient(135deg, rgba(20, 0, 0, 0.4), rgba(11, 11, 11, 0.6));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--gold);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--gold);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
  color: var(--gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

/* ==============================
   CALL TO ACTION
================================ */

.cta {
  padding: 120px 40px;
  background: 
    radial-gradient(circle at center, rgba(212, 175, 55, 0.15), transparent 60%),
    linear-gradient(135deg, #1a0000, #000);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '★';
  position: absolute;
  font-size: 400px;
  color: rgba(212, 175, 55, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.cta p {
  font-size: 1.3rem;
  color: #e8e8e8;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta .btn-gold {
  font-size: 1.2rem;
  padding: 20px 50px;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .countdown-item {
    min-width: 120px;
    padding: 25px 30px;
  }

  .countdown-number {
    font-size: 2.5rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 40px 30px;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .cta h2 {
    font-size: 2.5rem;
  }

  .cta p {
    font-size: 1.1rem;
  }
}