/* ============================================================
   Musical Island — servicio.css
   Estilos para páginas individuales de servicio
   ============================================================ */

/* ── Hero de servicio ────────────────────────────────────── */
.svc-hero {
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
  padding: 140px 24px 80px;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, #1a0830 0%, #060310 55%, #000 100%);
}
.svc-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
}
.svc-hero-content {
  position: relative; z-index: 2; max-width: 800px; margin: 0 auto;
  text-align: center;
}
.svc-breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--w60);
  text-decoration: none; margin-bottom: 28px;
  transition: color .2s;
}
.svc-breadcrumb:hover { color: var(--salmon); }
/* ── Service icon — floating 3D card outside hero box ───── */
.svc-icon-wrap {
  perspective: 700px;
  width: 190px; height: 190px;
  margin: 0 auto 36px;
  cursor: default;
}

.svc-icon-card {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .15s ease;
  animation: iconFloat 5s ease-in-out infinite;
}

.svc-icon-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(99,102,241,.14) 0%,
    rgba(139,92,246,.08) 40%,
    rgba(250,167,140,.10) 100%
  );
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 1px rgba(250,167,140,.15),
    0 12px 40px rgba(0,0,0,.5),
    0 0 80px rgba(139,92,246,.15),
    0 0 40px rgba(250,167,140,.10),
    inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

/* Shimmer sweep */
.svc-icon-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(
    105deg, transparent 0%, rgba(255,255,255,.12) 50%, transparent 100%
  );
  animation: iconShimmer 4s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%   { left: -60%; opacity: 0; }
  20%  { opacity: 1; }
  50%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* Pulse rings behind card */
.svc-icon-inner::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(250,167,140,.4);
  animation: iconRing 3s ease-out infinite;
}

@keyframes iconRing {
  0%   { box-shadow: 0 0 0 0   rgba(250,167,140,.4); }
  70%  { box-shadow: 0 0 0 20px rgba(250,167,140,.0); }
  100% { box-shadow: 0 0 0 0   rgba(250,167,140,.0); }
}

.svc-icon-inner img {
  width: 96px; height: 96px; object-fit: contain;
  filter: brightness(0) invert(1);
  position: relative; z-index: 1;
  drop-shadow: 0 4px 16px rgba(250,167,140,.4);
}

/* Outer pulse rings */
.svc-icon-ring {
  position: absolute; inset: -22px;
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 38px;
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}
.svc-icon-ring:nth-child(2) {
  inset: -44px;
  border-color: rgba(79,142,255,.10);
  animation-delay: .7s;
}

@keyframes ringPulse {
  0%,100% { opacity:1; transform:scale(1);   }
  50%      { opacity:.4; transform:scale(1.04); }
}

@keyframes iconFloat {
  0%,100% { transform: translateY(0px) rotateX(0deg);   }
  50%      { transform: translateY(-10px) rotateX(3deg); }
}
.svc-hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--w60); line-height: 1.75;
  font-weight: 300; max-width: 620px; margin: 0 auto;
}

/* ── Sección detalle ─────────────────────────────────────── */
.svc-detalle {
  padding: 100px 60px;
  background: linear-gradient(180deg, #000 0%, #05030a 100%);
}
.svc-detalle-inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 72px; max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.svc-detalle-text h2 { font-size: 28px; font-weight: 900; margin-bottom: 16px; }
.svc-detalle-text p  { font-size: 15px; color: var(--w60); line-height: 1.85; margin-bottom: 16px; font-weight: 300; }
.svc-detalle-text ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.svc-detalle-text ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--w60); font-weight: 300; }
.svc-detalle-text ul li::before { content: '→'; color: var(--salmon); font-weight: 800; flex-shrink: 0; }
.svc-beneficios { display: flex; flex-direction: column; gap: 20px; }
.svc-beneficio { display: flex; gap: 16px; align-items: flex-start; }
.svc-ben-icon {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.svc-beneficio h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.svc-beneficio p  { font-size: 13px; color: var(--w60); line-height: 1.65; font-weight: 300; }

/* ── Equipos section ─────────────────────────────────────── */
.svc-equipos-section {
  padding: 100px 60px;
  background: #030208;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.svc-faq-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, #030208, #000);
}
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 800px; }
.faq-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.faq-item:hover { border-color: rgba(206,140,109,.25); background: rgba(255,255,255,.05); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; font-size: 15px; font-weight: 700;
  user-select: none;
}
.faq-icon { font-size: 13px; color: var(--salmon); transition: transform .3s; flex-shrink: 0; }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--w60); line-height: 1.75;
  padding: 0 24px; transition: max-height .35s ease, padding .35s ease;
  font-weight: 300;
}
.faq-item.open .faq-a    { max-height: 400px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── Otros servicios ─────────────────────────────────────── */
.svc-otros {
  padding: 80px 60px;
  background: #000;
  border-top: 1px solid rgba(255,255,255,.05);
}
.otros-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px;
}
.otro-card {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  text-decoration: none; color: var(--w60);
  font-size: 13px; font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}
.otro-card i:first-child { font-size: 16px; color: var(--salmon); flex-shrink: 0; }
.otro-card:hover { background: rgba(255,255,255,.055); color: var(--white); border-color: rgba(206,140,109,.2); }
.otro-arr { margin-left: auto; font-size: 11px; opacity: 0; transition: opacity .2s, transform .2s; }
.otro-card:hover .otro-arr { opacity: 1; transform: translateX(4px); }

/* ── CTA section ─────────────────────────────────────────── */
.svc-cta-section {
  padding: 100px 60px;
  background: linear-gradient(180deg, #000, var(--purple));
  position: relative; overflow: hidden;
}
.svc-section-inner {
  max-width: 1200px; margin: 0 auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .svc-detalle        { padding: 70px 28px; }
  .svc-detalle-inner  { grid-template-columns: 1fr; gap: 44px; }
  .svc-equipos-section, .svc-faq-section, .svc-otros, .svc-cta-section { padding: 70px 28px; }
  .otros-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .svc-hero           { padding: 130px 20px 60px; }
  .otros-grid         { grid-template-columns: 1fr; }
}
