/* ============================================================
   UIXTRA — SELECT 1: Featured Products (CSS)
   Premium product grid — Aqua/Cyan Style
============================================================ */

/* Wrapper de la sección */
#templates {
  position: relative;
  z-index: 5;
}

/* Ajustes del título */
#templates h2 {
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.18);
}

/* ------------------------------------------------------------
   PRODUCT CARD (Ultra Premium)
------------------------------------------------------------ */

#templates .uix-card {
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 30px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Hover principal */
#templates .uix-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 55px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.22);
}

/* Imagen del producto */
#templates img {
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 10px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover sutil en imagen */
#templates .uix-card:hover img {
  transform: scale(1.03);
  opacity: 0.95;
}

/* Títulos de productos */
#templates h3 {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Precios */
#templates span.text-xl {
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.25);
}

/* ------------------------------------------------------------
   CTA FINAL
------------------------------------------------------------ */

#templates .uix-btn-secondary {
  border-radius: 14px;
  padding: 0.85rem 2.2rem;
}

#templates .uix-btn-secondary:hover {
  transform: translateY(-3px);
}

/* ------------------------------------------------------------
   APPEAR ANIMATIONS (usa clases globales)
------------------------------------------------------------ */

#templates .uix-appear-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#templates .uix-appear-item.uix-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 768px) {
  #templates .uix-card {
    padding: 1.3rem;
  }

  #templates img {
    border-radius: 12px;
  }
}
/* ============================================================
   UIXTRA — SELECT 2: Categories (CSS)
   Premium levitation blocks + glow icons
============================================================ */

#prompts {
  position: relative;
  z-index: 5;
}

/* Título */
#prompts h2 {
  text-shadow: 0 0 16px rgba(45, 212, 191, 0.18);
}

/* ------------------------------------------------------------
   CATEGORY CARDS (uix-select2-block)
------------------------------------------------------------ */

#prompts .uix-select2-block {
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 35px rgba(0, 0, 0, 0.55);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

/* Hover/Levitación */
#prompts .uix-select2-block:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 32px 55px rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

/* ------------------------------------------------------------
   ÍCONOS DENTRO DEL CÍRCULO
------------------------------------------------------------ */

#prompts svg {
  filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.35));
  transition: transform 0.35s ease;
}

/* Hover ícono */
#prompts .uix-select2-block:hover svg {
  transform: scale(1.08);
}

/* Textos */
#prompts h3 {
  color: #ffffff;
  font-weight: 700;
}

#prompts p {
  color: #c8d5df;
}

/* ------------------------------------------------------------
   APPEAR ANIMATIONS
------------------------------------------------------------ */

#prompts .uix-appear-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#prompts .uix-appear-item.uix-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 768px) {
  #prompts .uix-select2-block {
    padding: 1.7rem 1.3rem;
  }
}
/* ============================================================
   UIXTRA — SELECT 3: Why Choose UIXTRA? (Nuevo diseño)
   Glass + neon border + vertical features
============================================================ */

#resources {
  position: relative;
  z-index: 5;
}

/* Título */
#resources h2 {
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.18);
}

/* ------------------------------------------------------------
   FEATURE ITEM (tarjetas verticales premium)
------------------------------------------------------------ */

#resources .uix-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.3rem;

  padding: 1.6rem 1.4rem;
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 40px rgba(0, 0, 0, 0.55);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Hover premium */
#resources .uix-feature-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.75);
}

/* ------------------------------------------------------------
   ICONO — Glow Aqua Premium
------------------------------------------------------------ */

#resources .uix-feature-icon {
  height: 54px;
  width: 54px;
  min-width: 54px;

  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow:
    0 0 25px rgba(34, 211, 238, 0.25),
    inset 0 0 16px rgba(34, 211, 238, 0.15);

  color: #4fd5ff;
  font-size: 1.3rem;

  transition: transform 0.35s ease;
}

/* Hover icon micro-motion */
#resources .uix-feature-item:hover .uix-feature-icon {
  transform: scale(1.08);
}

/* Subtítulos */
#resources p {
  color: #c9d7e1;
}

/* ------------------------------------------------------------
   APPEAR ANIMATION (uix-appear-item)
------------------------------------------------------------ */

#resources .uix-appear-item {
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#resources .uix-appear-item.uix-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 768px) {
  #resources .uix-feature-item {
    padding: 1.3rem 1.2rem;
  }

  #resources .uix-feature-icon {
    height: 48px;
    width: 48px;
    min-width: 48px;
    font-size: 1.15rem;
  }
}
/* ============================================================
   UIXTRA — SECTION 5: TESTIMONIALS
   Glass cards + neon glow + soft motion
============================================================ */

#testimonials {
  position: relative;
  z-index: 5;
}

/* Title */
#testimonials h2 {
  text-shadow: 0 0 16px rgba(56, 189, 248, 0.18);
}

/* Wrapper */
.uix-testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

/* ------------------------------------------------------------
   TESTIMONIAL CARD
------------------------------------------------------------ */

.uix-testimonial-card {
  padding: 1.8rem;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 16px 35px rgba(0, 0, 0, 0.60);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

/* Hover premium */
.uix-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.20);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 26px 55px rgba(0, 0, 0, 0.75);
}

/* ------------------------------------------------------------
   CARD HEADER (avatar + name)
------------------------------------------------------------ */

.uix-testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.uix-testimonial-avatar {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.uix-testimonial-name {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
}

.uix-testimonial-role {
  color: #a7b7c5;
  font-size: 0.85rem;
}

/* ------------------------------------------------------------
   TEXT
------------------------------------------------------------ */

.uix-testimonial-text {
  color: #d6e4ee;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ------------------------------------------------------------
   RATING
------------------------------------------------------------ */

.uix-testimonial-rating i {
  color: #4fd5ff;
  font-size: 1rem;
  margin-right: 2px;

  filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.35));
}

/* ------------------------------------------------------------
   APPEAR ANIMATIONS (compatible con tu system)
------------------------------------------------------------ */

#testimonials .uix-appear-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#testimonials .uix-appear-item.uix-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------ */

@media (max-width: 768px) {
  .uix-testimonial-card {
    padding: 1.4rem;
  }

  .uix-testimonial-avatar {
    height: 46px;
    width: 46px;
  }
}
/* ============================================================
   UIXTRA — SECTION 6: Final CTA (Glass + Glow + Premium)
============================================================ */

#cta-final {
  position: relative;
  z-index: 5;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

/* CTA Block */
.uix-cta-block {
  position: relative;
  padding: 3.8rem 2.6rem;
  border-radius: 26px;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 25px 55px rgba(0, 0, 0, 0.65);

  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover Premium */
.uix-cta-block:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 38px 75px rgba(0, 0, 0, 0.75);
}

/* ------------------------------------------------------------
   GLOW ORBS (decoración premium UIXTRA)
------------------------------------------------------------ */

.uix-cta-glow-1,
.uix-cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.45;
  z-index: -1;
}

/* Aqua Glow */
.uix-cta-glow-1 {
  width: 340px;
  height: 340px;
  background: rgba(56, 189, 248, 0.35);
  top: -120px;
  left: -80px;
}

/* Emerald Glow */
.uix-cta-glow-2 {
  width: 380px;
  height: 380px;
  background: rgba(16, 185, 129, 0.32);
  bottom: -130px;
  right: -90px;
}

/* ------------------------------------------------------------
   Animaciones (uix-fade-reveal)
------------------------------------------------------------ */

#cta-final .uix-fade-reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#cta-final .uix-fade-reveal.uix-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   Responsive
------------------------------------------------------------ */

@media (max-width: 768px) {
  .uix-cta-block {
    padding: 2.8rem 1.8rem;
  }

  .uix-cta-glow-1,
  .uix-cta-glow-2 {
    filter: blur(100px);
    opacity: 0.35;
  }
}
.uix-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  margin: 2.5rem 0;
}
