.author-meta {
  font-size: 0.85rem;
  color: var(--areya-muted);
  font-weight: 600;
}

/* Highlight aleatorio */
.testimonial-card.testimonial-highlight {
  border-color: rgba(77, 208, 225, 0.5);
  box-shadow: 0 20px 60px rgba(77, 208, 225, 0.25);
  transform: translateY(-8px) scale(1.02);
}

.testimonial-card.testimonial-highlight .testimonial-stars {
  animation: star-pulse 2s ease-in-out infinite;
}

@keyframes star-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== FAQ ===== *//* ===== Página Inicio Moderna ===== */

/* HERO INMERSIVO */
.hero-immersive {
  position: relative;
  min-height: calc(100vh - 90px);
  background: radial-gradient(circle at 30% 20%, rgba(107, 74, 124, 0.15), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(233, 165, 58, 0.12), transparent 50%),
              linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero-immersive {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Glows flotantes */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float-glow 20s ease-in-out infinite;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.4), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(171, 71, 188, 0.3), transparent);
  top: 60%;
  right: 15%;
  animation-delay: 7s;
}

.hero-glow-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(233, 165, 58, 0.25), transparent);
  bottom: 20%;
  left: 50%;
  animation-delay: 14s;
}

@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-immersive .container {
  position: relative;
  z-index: 1;
}

.hero-row {
  min-height: auto;
}

@media (min-width: 992px) {
  .hero-row {
    min-height: 100vh;
  }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--starlight);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(77, 208, 225, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(77, 208, 225, 0.4); }
}

/* Hero title */
.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--starlight);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(248, 247, 243, 0.8);
  font-weight: 600;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--liquid-cyan), var(--liquid-purple), var(--liquid-pink), var(--amber-glow));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 8s ease infinite;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(248, 247, 243, 0.7);
  font-weight: 600;
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(248, 247, 243, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}

.scroll-mouse {
  width: 28px;
  height: 42px;
  border: 2px solid rgba(248, 247, 243, 0.4);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(248, 247, 243, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0; transform: translate(-50%, 12px); }
}

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

/* COLECCIONES */
.colecciones-section {
  position: relative;
  background: linear-gradient(180deg, #f8f7f3 0%, #e8e7e3 100%);
  padding: 6rem 0;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber-glow);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--areya-text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--areya-muted);
  font-weight: 600;
}

/* Colección cards */
.coleccion-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.coleccion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  transition: opacity 0.5s;
}

.coleccion-card:hover::before {
  opacity: 0.8;
}

.coleccion-media {
  position: relative;
  width: 100%;
  height: 100%;
}

.coleccion-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.coleccion-card:hover .coleccion-img {
  transform: scale(1.1);
}

.coleccion-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.coleccion-card:hover .coleccion-overlay {
  opacity: 1;
  transform: translateY(0);
}

.coleccion-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.coleccion-title {
  font-size: 2rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

.coleccion-desc {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.coleccion-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Variantes de color */
.coleccion-card--amethyst:hover {
  box-shadow: 0 20px 60px rgba(107, 74, 124, 0.3);
}

.coleccion-card--cyan:hover {
  box-shadow: 0 20px 60px rgba(77, 208, 225, 0.3);
}

.coleccion-card--gold:hover {
  box-shadow: 0 20px 60px rgba(233, 165, 58, 0.3);
}

/* PROCESO */
.proceso-section {
  position: relative;
  background: var(--space-deep);
  padding: 6rem 0;
  overflow: hidden;
}

.proceso-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(107, 74, 124, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(233, 165, 58, 0.12), transparent 50%);
  pointer-events: none;
}

.proceso-section .section-eyebrow,
.proceso-section .section-title,
.proceso-section .section-subtitle {
  color: var(--starlight);
}

.proceso-section .section-subtitle {
  color: rgba(248, 247, 243, 0.75);
}

.proceso-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.proceso-timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(77, 208, 225, 0.5) 20%,
    rgba(171, 71, 188, 0.5) 50%,
    rgba(233, 165, 58, 0.5) 80%,
    transparent 100%);
}

.proceso-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-left: 1rem;
}

.step-number {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.15), rgba(171, 71, 188, 0.15));
  border: 2px solid rgba(77, 208, 225, 0.4);
  border-radius: 50%;
  color: var(--starlight);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.proceso-step:hover .step-content {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 208, 225, 0.3);
  transform: translateX(10px);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--starlight);
  margin-bottom: 0.8rem;
}

.step-description {
  color: rgba(248, 247, 243, 0.75);
  line-height: 1.7;
  font-weight: 600;
}

/* DESTACADOS - MASONRY */
.destacados-section {
  background: linear-gradient(180deg, #e8e7e3 0%, #f8f7f3 100%);
  padding: 6rem 0;
}

.galeria-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  gap: 1rem;
  padding: 0 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item--tall {
  grid-row: span 2;
}

.masonry-item--wide {
  grid-column: span 2;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-overlay h4 {
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.masonry-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

/* CTA PERSONALIZACIÓN */
.cta-personal-section {
  position: relative;
  background: var(--space-deep);
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(77, 208, 225, 0.15), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(171, 71, 188, 0.12), transparent 50%);
  pointer-events: none;
}

.cta-personal-section .container {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--starlight);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.15rem;
  color: rgba(248, 247, 243, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 600;
}

.cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  color: rgba(248, 247, 243, 0.9);
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-features i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--liquid-cyan), var(--liquid-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CTA Visual cards flotantes */
.cta-visual {
  position: relative;
  height: 500px;
}

.visual-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card--1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 3;
  animation: float-card-1 6s ease-in-out infinite;
}

.visual-card--2 {
  width: 240px;
  height: 300px;
  top: 50px;
  right: 80px;
  z-index: 2;
  animation: float-card-2 7s ease-in-out infinite;
}

.visual-card--3 {
  width: 200px;
  height: 250px;
  bottom: 20px;
  right: 0;
  z-index: 1;
  animation: float-card-3 8s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}

@keyframes float-card-3 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.visual-card:hover {
  transform: scale(1.05) !important;
  z-index: 10 !important;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
  .proceso-timeline::before {
    left: 30px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .proceso-step {
    gap: 1rem;
  }
  
  .cta-visual {
    height: 400px;
    margin-top: 3rem;
  }
  
  .visual-card--1 {
    width: 200px;
    height: 250px;
  }
  
  .visual-card--2 {
    width: 180px;
    height: 220px;
  }
  
  .visual-card--3 {
    width: 160px;
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .galeria-masonry {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }
  
  .masonry-item--tall,
  .masonry-item--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media (max-width: 575.98px) {
  .scroll-indicator {
    display: none;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .scroll-indicator,
  .visual-card,
  .badge-pulse {
    animation: none !important;
  }
}

/* ===== TESTIMONIOS ===== */
.testimonios-section {
  background-image: url("../img/fondos/img1.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--starlight);
  overflow: hidden;
}



@media (max-width: 991.98px) { 
  .testimonios-section { background-attachment: scroll; } 
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(77, 208, 225, 0.15);
  border-color: rgba(77, 208, 225, 0.3);
}

.testimonial-stars {
  font-size: 1.5rem;
  color: var(--amber-glow);
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--areya-text);
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: 2rem;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--liquid-cyan), var(--liquid-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-weight: 800;
  color: var(--areya-text);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.author-meta {
  font-size: 0.85rem;
  color: var(--areya-muted);
  font-weight: 600;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--space-deep);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(107, 74, 124, 0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(233, 165, 58, 0.10), transparent 50%);
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section .section-eyebrow,
.faq-section .section-title,
.faq-section .section-subtitle {
  color: var(--starlight);
}

.faq-section .section-subtitle {
  color: rgba(248, 247, 243, 0.75);
}

.faq-section .accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(77, 208, 225, 0.3);
}

.faq-section .accordion-button {
  background: transparent;
  color: var(--starlight);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.5rem 1.8rem;
  border: none;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.15), rgba(171, 71, 188, 0.15));
  color: var(--starlight);
}

.faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f8f7f3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

.faq-section .accordion-button .bi {
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--liquid-cyan), var(--liquid-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-section .accordion-body {
  color: rgba(248, 247, 243, 0.85);
  line-height: 1.8;
  font-weight: 600;
  padding: 1.5rem 1.8rem 2rem;
  font-size: 1rem;
}

.faq-section .accordion-body strong {
  color: var(--starlight);
  font-weight: 800;
}

.faq-cta-text {
  color: rgba(248, 247, 243, 0.8);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ===== RESPONSIVE TESTIMONIOS Y FAQ ===== */
@media (max-width: 767.98px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .faq-section .accordion-button {
    font-size: 0.95rem;
    padding: 1.2rem 1.3rem;
  }
  
  .faq-section .accordion-button .bi {
    font-size: 1.1rem;
  }
  
  .faq-section .accordion-body {
    padding: 1.2rem 1.3rem 1.5rem;
    font-size: 0.95rem;
  }
}