/* ==========================================================================
   MANYIWEBSOFT — WEB AUTOGESTIONABLE WORDPRESS
   ========================================================================== */

/* ════════════════════════════════
   HERO ESTANDARIZADO
════════════════════════════════ */
.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 121px;
  background-color: #0f172a;
  color: #ffffff;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/Web-Autogestionable-WordPress.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none; 
}

.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 21, 32, 0.92) 0%,
    rgba(13, 21, 32, 0.75) 45%,
    rgba(13, 21, 32, 0.25) 100%
  );
}

.premium-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.premium-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0; 
  padding: 4rem 5% 4rem 6%; 
  display: grid;
  grid-template-columns: 520px 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2DD4BF;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: #2DD4BF;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%        { opacity: 0.5; transform: scale(0.7); }
}

.title-main {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0;
}

.title-main .highlight {
  color: #2DD4BF;
}

.subtitle {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: #c8d8e8;
  font-weight: 300;
  max-width: 480px;
  margin: 0;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #2DD4BF;
  line-height: 1;
}

.stat-n sup {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: super;
}

.stat-l {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2DD4BF;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero:hover {
  background-color: #14b8a6;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 1.8rem;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* ════════════════════════════════
   SECCIÓN CUERPO
════════════════════════════════ */
.srv-wrap {
  background: #f0f4f8;
  color: #0D1520;
}

.srv-precio-band {
  background: #0D1520;
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.srv-precio-band .texto {
  font-size: .88rem;
  color: #94a3b8;
  max-width: 500px;
  line-height: 1.6;
  margin: 0;
}

.srv-precio-band .texto strong { 
  color: #E8F0F7; 
}

.srv-precio-grupo {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  flex-shrink: 0;
}

.srv-precio-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5A7A90;
}

.srv-precio-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #2DD4BF;
  line-height: 1;
}

.srv-precio-num sup {
  font-size: 1rem;
  font-weight: 600;
  color: #5A7A90;
  vertical-align: super;
}

.srv-precio-cuotas {
  font-size: .75rem;
  color: #5A7A90;
}

.srv-btn-wa {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: #2DD4BF; 
  color: #000;
  padding: .85rem 1.8rem; 
  border-radius: 6px;
  font-weight: 800; 
  font-size: .85rem; 
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none; 
  transition: all .25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.srv-btn-wa:hover { 
  background: #1aaa98; 
  transform: translateY(-2px); 
}

.srv-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 5%;
}

.srv-head { 
  margin-bottom: 4rem; 
}

.srv-head-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #2DD4BF;
  background: rgba(45,212,191,.12);
  border: 1px solid rgba(45,212,191,.3);
  padding: .3rem .9rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.srv-head h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #0D1520;
  margin: 0 0 .8rem;
  line-height: 1.1;
}

.srv-head h2 span { color: #2DD4BF; }

.srv-head p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #5A7A90;
  max-width: 560px;
  line-height: 1.7;
  margin: 0;
}

.srv-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid #dde4ec;
  border-radius: 16px;
  overflow: hidden;
}

.srv-feat {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid #dde4ec;
  background: #fff;
  transition: background .2s;
}

.srv-feat:last-child { border-bottom: none; }
.srv-feat:hover { background: #f7fbff; }

.srv-feat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(45,212,191,.2);
  line-height: 1;
  text-align: center;
  transition: color .2s;
}

.srv-feat:hover .srv-feat-num { color: rgba(45,212,191,.5); }

.srv-feat-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0D1520;
  margin: 0 0 .3rem;
}

.srv-feat-body p {
  font-family: 'Lato', sans-serif;
  font-size: .88rem;
  color: #5A7A90;
  margin: 0;
  line-height: 1.6;
}

.srv-feat-tag {
  font-family: 'Lato', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-gratis { background: rgba(45,212,191,.12); color: #1aaa98; border:1px solid rgba(45,212,191,.3); }
.tag-incl   { background: rgba(13,21,32,.07); color: #5A7A90; border:1px solid #dde4ec; }
.tag-seo    { background: rgba(234,179,8,.12); color: #a16207; border:1px solid rgba(234,179,8,.3); }

.srv-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.srv-card-navy {
  background: #0D1520;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.srv-card-navy-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #E8F0F7;
}

.srv-card-navy-title span { color: #2DD4BF; }

.srv-atrib { display: flex; flex-direction: column; gap: 1rem; }

.srv-atrib-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.srv-atrib-item:last-child { border-bottom: none; padding-bottom: 0; }

.srv-atrib-icon {
  flex-shrink: 0; width: 36px; height: 36px;
  background: rgba(45,212,191,.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.srv-atrib-icon svg { width: 17px; height: 17px; stroke: #2DD4BF; }

.srv-atrib-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 700; color: #E8F0F7; margin: 0 0 .2rem;
}

.srv-atrib-item p { 
  font-family: 'Lato', sans-serif;
  font-size: .8rem; color: #5A7A90; margin: 0; line-height: 1.55; 
}

.srv-card-light {
  background: #fff;
  border: 1px solid #dde4ec;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.srv-pagos-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #94a3b8; margin-bottom: .9rem;
}

.srv-pagos-grid { display: flex; flex-wrap: wrap; gap: .5rem; }

.srv-pago-pill {
  font-family: 'Lato', sans-serif;
  font-size: .75rem; font-weight: 600; color: #334155;
  background: #f0f4f8; border: 1px solid #dde4ec;
  border-radius: 6px; padding: .3rem .75rem;
}

.srv-garantia {
  background: linear-gradient(135deg, rgba(45,212,191,.06) 0%, rgba(45,212,191,.02) 100%);
  border: 1px solid rgba(45,212,191,.2);
  border-radius: 10px;
  padding: 1.3rem;
  display: flex; gap: 1rem; align-items: flex-start;
}

.srv-garantia-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(45,212,191,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.srv-garantia h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem; font-weight: 700; color: #0D1520; margin: 0 0 .3rem;
}

.srv-garantia p { 
  font-family: 'Lato', sans-serif;
  font-size: .8rem; color: #5A7A90; margin: 0; line-height: 1.6; 
}

.srv-nota {
  font-family: 'Lato', sans-serif;
  font-size: .78rem; color: #94a3b8; line-height: 1.6;
  padding-top: 1rem; border-top: 1px solid #dde4ec;
  margin: 0;
}

.srv-nota strong { color: #0D1520; }

/* ════════════════════════════════
   MEDIA QUERIES (Ajustes responsivos unificados)
════════════════════════════════ */
@media (max-width: 992px) {
  .premium-hero .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 5%;
  }
  .premium-hero .hero-inner > div:last-child {
    display: none;
  }
  .hero-copy {
    align-items: center;
    text-align: center;
  }
  .hero-copy nav {
    justify-content: center;
    width: 100%;
  }
  .title-main {
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
  }
  .subtitle {
    margin: 0 auto;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .srv-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Fondo Hero Celular */
  .hero-bg-photo {
    background-image: url('/assets/img/Web-Autogestionable-WordPress-cel.webp'); 
    background-position: center center;
  }
  .hero-bg-photo::after {
    background: linear-gradient(180deg, rgba(13, 21, 32, 0.95) 0%, rgba(13, 21, 32, 0.85) 100%);
  }

  /* Reducción general de paddings para pantallas chicas (ej: Galaxy S8) */
  .premium-hero .hero-inner { padding: 3rem 1.25rem; }
  .srv-body { padding: 3rem 1.25rem; width: 100%; box-sizing: border-box; }
  .srv-card-navy, .srv-card-light { padding: 1.5rem; text-align: center; }
  
  /* Banda de Precio Centrada en Mobile */
  .srv-precio-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .srv-precio-band > div[style*="display:flex"] {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }
  .srv-precio-grupo { 
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }
  .srv-precio-num { font-size: 2.5rem; }
  
  /* Títulos y Header Centrados */
  .srv-head { text-align: center; margin-bottom: 2.5rem; }
  .srv-head p { margin: 0 auto; }

  /* Lista de Features Centrada y Adaptada a Mobile */
  .srv-features {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .srv-feat { 
    display: flex; 
    flex-direction: column; 
    text-align: center; 
    align-items: center;
    gap: 0.75rem; 
    padding: 1.5rem 1rem; 
    width: 100%;
    box-sizing: border-box;
  }
  .srv-feat-body {
    width: 100%;
  }
  .srv-feat-body h3 {
    font-size: 1.05rem;
  }
  .srv-feat-body p {
    font-size: 0.85rem;
  }
  .srv-feat-tag { 
    display: inline-block; 
    margin-top: 0.25rem;
  }
  .srv-feat-num { font-size: 2rem; margin-bottom: 0rem; }

  /* Elementos internos de las tarjetas centrados */
  .srv-card-navy-title { text-align: center; }
  .srv-atrib-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .srv-atrib-icon { margin-bottom: 0.25rem; }
  
  .srv-pagos-grid { justify-content: center; }
  .srv-garantia {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
  }
  .srv-garantia-icon { margin-bottom: 0.25rem; }
  .srv-nota { text-align: center; }

  /* Botones expandidos al 100% en pantallas angostas */
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat-n { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; gap: 1rem; width: 100%; }
  .btn-hero, .btn-ghost, .srv-btn-wa { width: 100%; justify-content: center; box-sizing: border-box; }
}