:root {
  /* Paleta Zuma Soluciones (extraída del logo) */
  --cyan: #89d9df;
  --cream: #ebd9b4;
  --salmon: #e4aa9c;
  --text: #f0eedf;
  --text-secondary: #b8b3a3;
  --text-tertiary: #898574;
  --bg-black: #000000;
  --bg-soft: #060809;
  --bg-card: #0c1014;
  --border-soft: rgba(255,255,255,0.06);
}

  /* =============================================
     PALETA DE COLORES EXTRAÍDA DEL LOGO ZUMA
     ----------------------------------------------
     Fondo principal:        #000000 (negro)
     Acento cyan pastel:     #89d9df
     Acento crema pastel:    #ebd9b4
     Acento salmón pastel:   #e4aa9c
     ============================================= */

  :root {
    --bg-black: #000000;
    --bg-soft: #0a0a0a;
    --bg-card: #111111;
    --border-soft: #1f1f1f;
    --cyan: #89d9df;
    --cream: #ebd9b4;
    --salmon: #e4aa9c;
    --cyan-soft: rgba(137, 217, 223, 0.12);
    --cream-soft: rgba(235, 217, 180, 0.10);
    --salmon-soft: rgba(228, 170, 156, 0.12);
    --text-primary: #ffffff;
    --text-secondary: #c8c8c8;
    --text-muted: #8a8a8a;
    --gradient-logo: linear-gradient(135deg, #89d9df 0%, #ebd9b4 50%, #e4aa9c 100%);
    --shadow-glow: 0 0 40px rgba(137, 217, 223, 0.15);
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* Gradiente decorativo de fondo */
  body::before {
    content: "";
    position: fixed;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    background:
      radial-gradient(circle at 20% 10%, rgba(137, 217, 223, 0.08), transparent 40%),
      radial-gradient(circle at 80% 60%, rgba(228, 170, 156, 0.06), transparent 45%),
      radial-gradient(circle at 50% 90%, rgba(235, 217, 180, 0.05), transparent 40%);
    z-index: -1;
    pointer-events: none;
  }

  /* ====== NAVEGACIÓN ====== */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    transition: all 0.3s ease;
  }

  .navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    box-shadow: var(--shadow-glow);
  }

  .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .logo-icon {
    width: 44px;
    height: 44px;
    position: relative;
  }

  /* Logo reconstruido en CSS con los colores pastel */
  .logo-icon svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .logo-text .brand {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

  .logo-text .solutions {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 4.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
  }

  .nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-menu a:hover {
    color: var(--cyan);
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-logo);
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  .btn-cta-nav {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-cta-nav:hover {
    background: var(--cyan);
    color: var(--bg-black);
    box-shadow: 0 0 20px rgba(137, 217, 223, 0.4);
  }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }

  /* ====== HERO ====== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 80px;
    position: relative;
  }

  .hero-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--cyan-soft);
    border: 1px solid rgba(137, 217, 223, 0.25);
    font-size: 13px;
    font-weight: 500;
    color: var(--cyan);
    margin-bottom: 32px;
  }

  .badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  .hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
    color: #ffffff;
  }

  .hero h1 .gradient-text {
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero p {
    font-size: clamp(16px, 1.6vw, 19px);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.7;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--gradient-logo);
    color: #000000;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(137, 217, 223, 0.3);
  }

  .btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-secondary:hover {
    border-color: var(--cream);
    color: var(--cream);
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border-soft);
  }

  .stat {
    text-align: center;
  }

  .stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* ====== SECCIONES GENERALES ====== */
  section {
    padding: 100px 40px;
    position: relative;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* ====== SERVICIOS ====== */
  #servicios {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-logo);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(137, 217, 223, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(137, 217, 223, 0.05);
  }

  .service-card:hover::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--cyan-soft);
    border: 1px solid rgba(137, 217, 223, 0.2);
  }

  .service-card:nth-child(2) .service-icon {
    background: var(--cream-soft);
    border-color: rgba(235, 217, 180, 0.2);
  }

  .service-card:nth-child(3) .service-icon {
    background: var(--salmon-soft);
    border-color: rgba(228, 170, 156, 0.2);
  }

  .service-card:nth-child(4) .service-icon {
    background: var(--cyan-soft);
    border-color: rgba(137, 217, 223, 0.2);
  }

  .service-card:nth-child(5) .service-icon {
    background: var(--cream-soft);
    border-color: rgba(235, 217, 180, 0.2);
  }

  .service-card:nth-child(6) .service-icon {
    background: var(--salmon-soft);
    border-color: rgba(228, 170, 156, 0.2);
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--cyan);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .service-card:nth-child(2) .service-icon svg { stroke: var(--cream); }
  .service-card:nth-child(3) .service-icon svg { stroke: var(--salmon); }

  .service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
  }

  .service-card p {
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.65;
  }

  .service-card .service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 9px 18px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: 100px;
    color: #25D366;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .service-card .service-cta:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.5);
    transform: translateX(4px);
  }

  .service-card .service-cta svg {
    transition: transform 0.3s ease;
  }

  .service-card .service-cta:hover svg {
    transform: translateX(3px);
  }

  /* Botón flotante WhatsApp */
  .whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 3s ease-in-out infinite;
  }

  .whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
  }

  @keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 8px rgba(37, 211, 102, 0.15); }
  }

  /* ====== NOSOTROS ====== */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .about-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }

  .about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .feature-list {
    list-style: none;
    margin-top: 28px;
  }

  .feature-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-primary);
  }

  .check-circle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-logo);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    margin-top: 2px;
  }

  .about-visual {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-soft));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .about-visual::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background:
      radial-gradient(circle at 30% 30%, rgba(137, 217, 223, 0.18), transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(228, 170, 156, 0.15), transparent 50%);
    animation: rotate 25s linear infinite;
  }

  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .about-logo-big {
    width: 60%;
    position: relative;
    z-index: 2;
  }

  /* ====== SHUT DE BASURAS ====== */
  #shut {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
  }

  /* Definición SHUT */
  .section-subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  .section-mini-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .section-mini-header h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
  }

  .section-mini-header p {
    color: var(--text-secondary);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Bloque 1: Banner con anillo de frecuencia */
  .shut-banner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0 80px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(137, 217, 223, 0.05), rgba(228, 170, 156, 0.04));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    position: relative;
  }

  .shut-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-logo);
    border-radius: 24px 24px 0 0;
  }

  .shut-banner-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
  }

  .shut-banner-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
  }

  .shut-banner-content strong {
    color: var(--cream);
    font-weight: 600;
  }

  .shut-frequency-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
  }

  .frequency-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
  }

  .frequency-ring svg {
    width: 100%;
    height: 100%;
  }

  .frequency-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .frequency-center strong {
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-weight: 800;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .frequency-center span {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .shut-frequency-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .shut-frequency-card p {
    font-size: 13px;
    color: var(--text-secondary);
  }

  /* Bloque 2: Pasos del proceso */
  .shut-steps-wrapper {
    margin-bottom: 80px;
  }

  .shut-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .shut-step {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 32px 26px;
    position: relative;
    transition: all 0.4s ease;
  }

  .shut-step:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 217, 223, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }

  .shut-step-number {
    position: absolute;
    top: -16px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--gradient-logo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #000;
    box-shadow: 0 6px 16px rgba(137, 217, 223, 0.3);
  }

  .shut-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--cyan-soft);
    border: 1px solid rgba(137, 217, 223, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .shut-step:nth-child(2) .shut-step-icon,
  .shut-step:nth-child(5) .shut-step-icon {
    background: var(--cream-soft);
    border-color: rgba(235, 217, 180, 0.2);
  }

  .shut-step:nth-child(3) .shut-step-icon,
  .shut-step:nth-child(6) .shut-step-icon {
    background: var(--salmon-soft);
    border-color: rgba(228, 170, 156, 0.2);
  }

  .shut-step-icon svg {
    width: 26px;
    height: 26px;
    color: var(--cyan);
  }

  .shut-step:nth-child(2) .shut-step-icon svg,
  .shut-step:nth-child(5) .shut-step-icon svg {
    color: var(--cream);
  }

  .shut-step:nth-child(3) .shut-step-icon svg,
  .shut-step:nth-child(6) .shut-step-icon svg {
    color: var(--salmon);
  }

  .shut-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
  }

  .shut-step p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .shut-step p strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* Bloque 3: Beneficios */
  .shut-benefits-grid {
    margin-bottom: 80px;
  }

  .benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s ease;
  }

  .benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(137, 217, 223, 0.25);
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .benefit-icon svg {
    width: 24px;
    height: 24px;
  }

  .benefit-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
  }

  .benefit-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* Bloque 4: Advertencia */
  .shut-warning {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 36px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, rgba(228, 170, 156, 0.06), rgba(228, 170, 156, 0.02));
    border: 1px solid rgba(228, 170, 156, 0.2);
    border-radius: 20px;
    position: relative;
  }

  .warning-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(228, 170, 156, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .warning-icon svg {
    width: 30px;
    height: 30px;
    color: var(--salmon);
  }

  .warning-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
  }

  .warning-content ul {
    list-style: none;
  }

  .warning-content li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14.5px;
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .warn-bullet {
    color: var(--salmon);
    font-weight: 700;
    flex-shrink: 0;
  }

  .warning-content em {
    color: var(--cream);
    font-style: normal;
    font-weight: 600;
  }

  /* Bloque 5: CTA Final */
  .shut-cta-final {
    background: linear-gradient(135deg, rgba(137, 217, 223, 0.08), rgba(228, 170, 156, 0.06));
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .shut-cta-final::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-logo);
  }

  .shut-cta-final::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(137, 217, 223, 0.15), transparent 70%);
    pointer-events: none;
  }

  .shut-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
  }

  .shut-cta-content .section-tag {
    margin-bottom: 18px;
  }

  .shut-cta-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    color: #ffffff;
  }

  .shut-cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
  }

  .shut-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .shut-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: #25D366;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
  }

  .shut-cta-primary:hover {
    transform: translateY(-3px);
    background: #1ebe57;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
  }

  .shut-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-soft);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  .shut-cta-secondary:hover {
    border-color: var(--cream);
    color: var(--cream);
  }

  /* ====== PROCESO ====== */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
  }

  .process-number {
    font-family: 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
  }

  .process-step h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  /* ====== AGRADECIMIENTO + REDES ====== */
  #contacto {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-soft);
  }

  .thank-you-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--gradient-logo);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(137, 217, 223, 0.25);
    animation: float-icon 4s ease-in-out infinite;
  }

  .thank-you-icon svg {
    width: 38px;
    height: 38px;
    stroke: #000000;
    fill: #000000;
  }

  @keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .thank-you-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .thank-you-text strong {
    color: var(--text-primary);
  }

  /* Quote card */
  .quote-card {
    margin: 48px auto;
    max-width: 720px;
    padding: 36px 32px;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-black));
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    position: relative;
    text-align: left;
  }

  .quote-card .quote-mark {
    position: absolute;
    top: 16px;
    left: 24px;
    width: 36px;
    height: 36px;
    fill: var(--cyan);
    opacity: 0.2;
  }

  .quote-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 16px 0 20px;
  }

  .quote-author {
    display: block;
    font-size: 13px;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Social CTA block */
  .social-cta-block {
    margin-top: 64px;
    padding: 48px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }

  .social-cta-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-logo);
  }

  .social-cta-block h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
  }

  .social-cta-block > p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .social-buttons-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
  }
  .social-buttons-grid .social-btn { max-width: 420px; width: 100%; }

  .social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-black);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .social-btn:hover {
    transform: translateY(-3px);
    border-color: currentColor;
  }

  .social-btn svg:not(.arrow-icon) {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }

  .social-btn-content {
    flex: 1;
    text-align: left;
  }

  .social-btn-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
  }

  .social-btn-content span {
    display: block;
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 400;
  }

  .social-btn .arrow-icon {
    color: var(--text-muted);
    transition: all 0.3s ease;
  }

  .social-btn:hover .arrow-icon {
    color: currentColor;
    transform: translate(3px, -3px);
  }

  /* Colores por red social */
  .social-btn-instagram { color: #E4405F; }
  .social-btn-instagram:hover { box-shadow: 0 10px 25px rgba(228, 64, 95, 0.2); }
  .social-btn-instagram svg:not(.arrow-icon) { color: #E4405F; }


  .follow-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: rgba(137, 217, 223, 0.08);
    border: 1px solid rgba(137, 217, 223, 0.2);
    border-radius: 100px;
    color: var(--cyan);
    font-size: 13.5px;
    font-weight: 500;
  }

  .follow-cta svg { color: var(--cyan); }

  .final-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-logo);
    margin: 56px auto 32px;
    border-radius: 2px;
  }

  /* Quick contact strip */
  .quick-contact-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
  }

  .strip-label {
    font-weight: 600;
    color: var(--cream);
    font-size: 14px;
  }

  .strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .strip-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  }

  .strip-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .strip-link:hover { color: var(--cyan); }

  .strip-divider {
    color: var(--text-muted);
    font-size: 18px;
  }

  /* ====== FOOTER ====== */
  footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-soft);
    padding: 60px 40px 30px;
  }

  .footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-soft);
  }

  .footer-brand {
    max-width: 320px;
  }

  .footer-brand .logo {
    margin-bottom: 20px;
  }

  .footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-col h5 {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col li {
    margin-bottom: 10px;
  }

  .footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-col a:hover {
    color: var(--cyan);
  }

  .footer-bottom {
    max-width: 1280px;
    margin: 30px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .social-links {
    display: flex;
    gap: 12px;
  }

  .social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
  }

  .social-link:hover {
    border-color: var(--cyan);
    background: var(--cyan-soft);
  }

  .social-link:hover svg {
    fill: var(--cyan);
  }

  /* ====== ANIMACIONES ====== */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ====== RESPONSIVE ====== */
  @media (max-width: 900px) {
    .nav-menu {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 30px;
      gap: 24px;
      transform: translateY(-150%);
      transition: transform 0.4s ease;
      border-bottom: 1px solid var(--border-soft);
    }

    .nav-menu.active {
      transform: translateY(0);
    }

    .mobile-toggle {
      display: block;
    }

    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .about-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .social-buttons-grid,
    .shut-banner,
    .benefit-cards,
    .shut-steps-grid {
      grid-template-columns: 1fr;
    }

    .shut-steps-grid {
      grid-template-columns: 1fr;
    }

    .shut-warm, .shut-warning {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .warning-icon {
      margin: 0 auto;
    }

    .quick-contact-strip {
      flex-direction: column;
      text-align: center;
    }

    .strip-divider { display: none; }

    section {
      padding: 70px 24px;
    }

    .nav-container {
      padding: 16px 24px;
    }

    .hero {
      padding: 120px 24px 60px;
    }
  }

  @media (max-width: 500px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }

    .process-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ====== CTA: Información detallada por WhatsApp ====== */
  .services-info-cta {
    margin: 60px auto 40px;
    max-width: 820px;
    padding: 36px 32px 30px;
    background: linear-gradient(135deg, rgba(137, 217, 223, 0.08) 0%, rgba(228, 170, 156, 0.08) 100%);
    border: 1px solid rgba(137, 217, 223, 0.30);
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(137, 217, 223, 0.10);
    position: relative;
    overflow: hidden;
  }
  .services-info-cta::before {
    content: "";
    position: absolute;
    top: -90px; right: -90px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(137, 217, 223, 0.20) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .services-info-cta::after {
    content: "";
    position: absolute;
    bottom: -90px; left: -90px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(228, 170, 156, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .info-cta-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .info-cta-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1414;
    box-shadow: 0 8px 22px rgba(137, 217, 223, 0.30);
  }
  .info-cta-title-block { flex: 1; }
  .info-cta-title-block h3 {
    margin: 0 0 8px;
    color: var(--cream);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    font-family: var(--font-display);
  }
  .info-cta-title-block p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
  }
  .info-cta-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
  }
  .info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    background: rgba(0, 0, 0, 0.40);
    border: 1px solid rgba(137, 217, 223, 0.25);
    border-radius: 999px;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
  }
  .info-chip svg { color: var(--cyan); flex-shrink: 0; }
  .info-chip:hover {
    border-color: var(--cyan);
    background: rgba(137, 217, 223, 0.08);
    transform: translateY(-1px);
  }
  .info-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
  }
  .info-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 260px;
    justify-content: center;
    padding: 15px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15.5px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.30), 0 4px 12px rgba(18, 140, 126, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    letter-spacing: 0.2px;
  }
  .info-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.40), 0 6px 16px rgba(18, 140, 126, 0.30);
  }
  .info-cta-btn-primary svg { flex-shrink: 0; }
  .info-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 22px;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 14px;
    border: 1px solid rgba(235, 217, 180, 0.40);
    transition: all 0.25s ease;
  }
  .info-cta-btn-secondary:hover {
    border-color: var(--cream);
    background: rgba(235, 217, 180, 0.08);
    transform: translateY(-2px);
  }
  .info-cta-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-tertiary);
    font-size: 13.5px;
    position: relative;
    z-index: 1;
  }
  .info-cta-footer svg { color: var(--cyan); flex-shrink: 0; }
  .info-cta-footer strong { color: var(--cream); font-weight: 700; }

  @media (max-width: 720px) {
    .services-info-cta { padding: 26px 20px 24px; margin: 40px auto 30px; }
    .info-cta-header { flex-direction: column; gap: 14px; }
    .info-cta-title-block h3 { font-size: 19px; }
    .info-cta-btn-primary, .info-cta-btn-secondary { flex: 1 1 100%; min-width: 0; }
  }



  /* ====== HERO — mejora con pilares y público objetivo ====== */
  .hero-lead {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
  }
  .hero-lead strong { color: var(--text); font-weight: 700; }

  .hero-pillars {
    list-style: none;
    margin: 28px auto 36px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 880px;
  }
  .hero-pillars li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(137, 217, 223, 0.18);
    border-radius: 14px;
    text-align: left;
    transition: all 0.25s ease;
  }
  .hero-pillars li:hover {
    border-color: rgba(137, 217, 223, 0.45);
    background: rgba(137, 217, 223, 0.06);
    transform: translateY(-2px);
  }
  .pillar-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 2px;
  }
  .hero-pillars span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.55;
  }
  .hero-pillars strong {
    color: var(--cream);
    font-weight: 700;
    font-size: 14.5px;
  }

  @media (max-width: 760px) {
    .hero-pillars { grid-template-columns: 1fr; gap: 12px; max-width: 480px; }
    .hero-lead { font-size: 15.5px; }
  }



/* ================================================
   Estilos específicos para PÁGINAS SECUNDARIAS
   ================================================ */

/* ====== BREADCRUMB ====== */
.breadcrumb-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 14px 0;
  font-size: 13.5px;
  margin-top: 70px; /* compensar por navbar fija */
}
.breadcrumb-strip .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.breadcrumb-strip ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.breadcrumb-strip li { color: var(--text-tertiary); }
.breadcrumb-strip li:not(:last-child)::after {
  content: "›";
  margin-left: 6px;
  color: var(--text-tertiary);
}
.breadcrumb-strip a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-strip a:hover { color: var(--cyan); }
.breadcrumb-strip .current { color: var(--cream); font-weight: 600; }

/* ====== PAGE HERO (encabezado de página) ====== */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(137, 217, 223, 0.05) 0%, transparent 60%);
}
.page-hero .container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.page-hero .section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(137, 217, 223, 0.10);
  border: 1px solid rgba(137, 217, 223, 0.25);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.page-subtitle {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}
.page-subtitle strong { color: var(--text); font-weight: 700; }
.page-cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ====== CONTENIDO PRINCIPAL ====== */
.content-section { padding: 60px 0 80px; }
.content-section .container { max-width: 980px; margin: 0 auto; padding: 0 24px; }

.content-block { margin: 0 0 50px; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.25;
}
.content-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  margin: 24px 0 10px;
}
.content-block p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.content-block ul {
  padding-left: 20px;
  color: var(--text-secondary);
}
.content-block li {
  margin-bottom: 8px;
  line-height: 1.65;
}
.content-block ul.checklist {
  list-style: none;
  padding-left: 0;
}
.content-block ul.checklist li {
  padding-left: 30px;
  position: relative;
}
.content-block ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 18px;
}
.content-block strong { color: var(--cream); }

.highlight-block {
  background: linear-gradient(135deg, rgba(137, 217, 223, 0.08) 0%, rgba(228, 170, 156, 0.05) 100%);
  border-left: 3px solid var(--cyan);
  padding: 28px 32px;
  border-radius: 12px;
}
.warning-block {
  background: rgba(228, 170, 156, 0.06);
  border-left: 3px solid var(--salmon);
  padding: 28px 32px;
  border-radius: 12px;
}

.inline-link {
  color: var(--cyan);
  text-decoration: underline;
  font-weight: 600;
}
.inline-link:hover { color: var(--cream); }

/* ====== SERVICE DETAIL ====== */
.service-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-soft);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(137, 217, 223, 0.15), rgba(235, 217, 180, 0.10));
  border: 1px solid rgba(137, 217, 223, 0.30);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.service-detail-icon svg { width: 32px; height: 32px; }
.service-detail-body { min-width: 0; }
.service-detail-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}
.service-detail-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin: 18px 0 8px;
}
.service-detail-body p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 10px;
}
.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}
.service-detail-body li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 6px;
}
.service-detail-body li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.service-detail-featured {
  background: linear-gradient(135deg, rgba(137, 217, 223, 0.07), rgba(228, 170, 156, 0.05));
  border: 1px solid rgba(137, 217, 223, 0.25);
  border-radius: 18px;
  padding: 36px 32px;
  margin: 40px 0;
}
.featured-badge {
  display: inline-block;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--cyan), var(--cream));
  color: #0a1414;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 12px;
}
.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ====== PROCESS STEPS ====== */
.process-steps { display: grid; gap: 28px; margin-top: 30px; }
.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  align-items: start;
}
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--cream));
  color: #0a1414;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(137, 217, 223, 0.25);
}
.step-content { padding-top: 8px; }
.step-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  font-family: var(--font-display);
}
.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ====== TIMELINE (para proceso.html) ====== */
.process-timeline { position: relative; }
.process-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--cream), var(--salmon));
  opacity: 0.4;
}
.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-marker {
  position: relative;
  z-index: 2;
}
.timeline-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--cyan), var(--cream));
  color: #0a1414;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(137, 217, 223, 0.30);
}
.timeline-content { padding-top: 10px; }
.timeline-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}
.timeline-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin: 16px 0 6px;
}
.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.timeline-content ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.timeline-content ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ====== COMPARISON TABLE ====== */
.comparison-table { overflow-x: auto; margin: 24px 0; }
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14.5px;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-secondary);
}
.comparison-table th {
  background: rgba(137, 217, 223, 0.10);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
}
.comparison-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

/* ====== VALUES GRID (nosotros) ====== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.value-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.value-card:hover {
  border-color: rgba(137, 217, 223, 0.40);
  background: rgba(137, 217, 223, 0.04);
  transform: translateY(-2px);
}
.value-card h3 {
  color: var(--cream);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: var(--font-display);
}
.value-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

/* ====== BENEFITS / SHUT ====== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.benefit-card {
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid rgba(137, 217, 223, 0.20);
  border-radius: 14px;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  border-color: var(--cyan);
  background: rgba(137, 217, 223, 0.04);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 40px;
  height: 40px;
  color: var(--cyan);
  margin-bottom: 10px;
}
.benefit-card h3 {
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 6px;
  font-family: var(--font-display);
}
.benefit-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ====== CONTACT GRID ====== */
.contact-grid-multi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-channel {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-channel:hover {
  border-color: rgba(137, 217, 223, 0.40);
  background: rgba(137, 217, 223, 0.04);
  transform: translateY(-3px);
}
.contact-channel-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}
.contact-channel-icon svg { width: 36px; height: 36px; }
.whatsapp-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}
.phone-icon {
  background: linear-gradient(135deg, var(--cyan), var(--cream));
  color: #0a1414;
}
.mail-icon {
  background: linear-gradient(135deg, var(--cream), var(--salmon));
  color: #0a1414;
}
.instagram-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743 45%, #cc2366 60%, #bc1888);
  color: #fff;
}
.contact-channel h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.contact-channel p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.contact-channel p strong {
  color: var(--cream);
  font-size: 16px;
  display: block;
  margin: 6px 0 14px;
}
.btn-block { display: block; width: 100%; text-align: center; }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.coverage-item {
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}
.coverage-item h3 {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}
.coverage-item p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.info-cta-content {
  background: linear-gradient(135deg, rgba(137, 217, 223, 0.07), rgba(228, 170, 156, 0.05));
  border: 1px solid rgba(137, 217, 223, 0.25);
  border-radius: 18px;
  padding: 36px 32px;
  text-align: center;
}
.info-cta-content h2 { margin-top: 0; }
.info-cta-content p { max-width: 660px; margin: 0 auto 18px; }
.info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0 24px;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: rgba(0, 0, 0, 0.40);
  border: 1px solid rgba(137, 217, 223, 0.25);
  border-radius: 999px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
}

.btn-large { padding: 16px 28px; font-size: 16px; }

/* ====== CTA SECTION ====== */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, var(--bg-black) 0%, rgba(137, 217, 223, 0.04) 100%);
}
.cta-section .container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.cta-block {
  background: linear-gradient(135deg, rgba(137, 217, 223, 0.10), rgba(228, 170, 156, 0.06));
  border: 1px solid rgba(137, 217, 223, 0.30);
  border-radius: 22px;
  padding: 42px 36px;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--cream);
  margin: 0 0 14px;
  line-height: 1.25;
}
.cta-block p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 24px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ====== SHUT HERO específico ====== */
.shut-hero {
  background:
    radial-gradient(ellipse at top right, rgba(228, 170, 156, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(137, 217, 223, 0.08) 0%, transparent 50%);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 760px) {
  .service-detail { grid-template-columns: 60px 1fr; gap: 18px; }
  .service-detail-icon { width: 50px; height: 50px; }
  .service-detail-icon svg { width: 26px; height: 26px; }
  .service-detail-body h2 { font-size: 19px; }
  .service-detail-featured { padding: 24px 20px; }
  .step { grid-template-columns: 50px 1fr; gap: 16px; }
  .step-number { width: 44px; height: 44px; font-size: 18px; }
  .timeline-step { grid-template-columns: 50px 1fr; gap: 18px; }
  .timeline-number { width: 44px; height: 44px; font-size: 13px; }
  .process-timeline::before { left: 22px; }
  .cta-block { padding: 28px 22px; }
  .breadcrumb-strip { font-size: 12.5px; }
}
