/*
Theme Name:   Astra Child StreamNova
Description:  Child theme de Astra para StreamNova.com — Mobile First v2.0
Author:       Henry Aguilar
Template:     astra
Version:      2.0
Text Domain:  astra-child-streamnova
*/

@import url('../astra/style.css');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ============================================================
   VARIABLES
============================================================ */
:root {
  --sn-bg:       #0D0D0D;
  --sn-surface:  #141414;
  --sn-border:   #2A2A2A;
  --sn-blue:     #00C2FF;
  --sn-magenta:  #E040FB;
  --sn-gold:     #FFD700;
  --sn-green:    #25D366;
  --sn-muted:    #A0A0A0;
  --font-sans:    'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --sn-r:    12px;
  --sn-r-xl: 16px;
}

/* ============================================================
   RESET BASE MOBILE FIRST
============================================================ */
html, body { overflow-x: hidden; width: 100%; -webkit-text-size-adjust: 100%; }
body { background: var(--sn-bg) !important; color: #fff; font-family: var(--font-sans); font-size: 15px; line-height: 1.65; margin: 0; padding: 0; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sn-blue); text-decoration: none; }
a:hover { text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); margin: 0; padding: 0; line-height: 1.15; }
p { margin: 0 0 14px; }
ul, ol { margin: 0; padding: 0; }

/* ============================================================
   CONTENEDOR
============================================================ */
.sn-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width:640px)  { .sn-container { padding: 0 24px; } }
@media (min-width:1024px) { .sn-container { padding: 0 48px; } }

/* ============================================================
   PADDING SECCIONES
============================================================ */
.sn-section-padding { padding-top: 48px; padding-bottom: 48px; }
@media (min-width:640px)  { .sn-section-padding { padding-top: 64px;  padding-bottom: 64px;  } }
@media (min-width:1024px) { .sn-section-padding { padding-top: 80px;  padding-bottom: 80px;  } }

/* ============================================================
   GRIDS — 1 columna mobile, escalan arriba
============================================================ */
.sn-grid-2 { display: grid; grid-template-columns: 1fr;       gap: 16px; }
.sn-grid-3 { display: grid; grid-template-columns: 1fr;       gap: 16px; }
.sn-grid-4 { display: grid; grid-template-columns: 1fr 1fr;   gap: 12px; }

@media (min-width:600px)  { .sn-grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (min-width:768px)  { .sn-grid-2 { grid-template-columns: 1fr 1fr; gap: 24px; } .sn-grid-3 { grid-template-columns: repeat(3,1fr); gap: 24px; } }
@media (min-width:1024px) { .sn-grid-4 { grid-template-columns: repeat(4,1fr); gap: 24px; } }

/* ============================================================
   CARD BASE
============================================================ */
.sn-card {
  background: var(--sn-surface);
  border: 1px solid var(--sn-border);
  border-radius: var(--sn-r-xl);
  transition: border-color 0.3s ease;
}

/* ============================================================
   BOTONES — full-width mobile, auto desktop
============================================================ */
.sn-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-display); font-weight: 700;
  font-size: 15px; padding: 14px 20px; border-radius: 12px;
  border: none; cursor: pointer; text-decoration: none !important;
  text-align: center; transition: all 0.2s ease;
  width: 100%; line-height: 1;
}
.sn-btn:active { transform: scale(0.97); }
.sn-btn:hover  { filter: brightness(1.1); text-decoration: none !important; }
@media (min-width:640px) { .sn-btn { width: auto; font-size: 16px; padding: 15px 28px; } }

.sn-btn-wa           { background: var(--sn-green);   color: #fff; }
.sn-btn-blue         { background: var(--sn-blue);    color: #0D0D0D; }
.sn-btn-mag          { background: var(--sn-magenta); color: #fff; }
.sn-btn-outline      { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.sn-btn-outline:hover { background: rgba(255,255,255,0.06); }
.sn-btn-outline-blue { background: transparent; color: var(--sn-blue); border: 1px solid rgba(0,194,255,0.4); }
.sn-btn-outline-blue:hover { background: rgba(0,194,255,0.06); }
.sn-btn-outline-mag  { background: transparent; color: var(--sn-magenta); border: 1px solid rgba(224,64,251,0.4); }
.sn-btn-outline-mag:hover { background: rgba(224,64,251,0.06); }

/* Grupo de botones */
.sn-app-ctas { display: flex; flex-direction: column; gap: 10px; }
@media (min-width:640px) { .sn-app-ctas { flex-direction: row; gap: 12px; } }

/* ============================================================
   UTILIDADES
============================================================ */
.sn-gradient-text {
  background: linear-gradient(to right, var(--sn-blue), var(--sn-magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sn-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: var(--font-display);
}
.sn-badge-blue { background: rgba(0,194,255,0.1);  color: var(--sn-blue);    border: 1px solid rgba(0,194,255,0.3); }
.sn-badge-mag  { background: rgba(224,64,251,0.1); color: var(--sn-magenta); border: 1px solid rgba(224,64,251,0.3); }
.sn-badge-gold { background: rgba(255,215,0,0.15); color: var(--sn-gold);    border: 1px solid rgba(255,215,0,0.4); }

/* ============================================================
   ANIMACIONES
============================================================ */
.wa-pulse { animation: wa-pulse 2.5s infinite; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%     { box-shadow: 0 4px 32px rgba(37,211,102,0.70); }
}
.sn-fadein { animation: sn-fadein 0.6s ease both; }
.sn-fadein-delay-1 { animation-delay: 0.1s; }
.sn-fadein-delay-2 { animation-delay: 0.2s; }
.sn-fadein-delay-3 { animation-delay: 0.3s; }
@keyframes sn-fadein {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0d0d0d; }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* ============================================================
   ASTRA HEADER OVERRIDES
============================================================ */
#masthead, .site-header, .ast-mobile-header-bar, .main-header-bar {
  background: rgba(13,13,13,0.92) !important;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sn-border) !important;
  position: sticky; top: 0; z-index: 200;
}
.site-title a, .site-title a:visited {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: #fff !important;
}
.main-navigation a, .main-header-menu a {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
}
.main-navigation a:hover { color: var(--sn-blue) !important; }
.menu-toggle, .menu-toggle:hover { color: #fff !important; background: transparent !important; border: none !important; }

/* Quitar título y padding de Astra */
.ast-page-builder-template .entry-header,
.ast-page-builder-template .entry-title,
.page-title { display: none !important; }
.ast-page-builder-template .site-content,
.ast-page-builder-template .entry-content { padding: 0 !important; margin-top: 0 !important; }
.ast-page-builder-template .site-content .ast-container { max-width: 100%; padding: 0; }
.ast-page-builder-template .site-content,
.ast-page-builder-template .entry-content,
.wp-block-html { overflow: visible !important; }

/* Full-bleed hero */
.entry-content .sn-hero,
.entry-content > .wp-block-html > .sn-hero {
  width: 100vw; position: relative;
  left: 50%; margin-left: -50vw; margin-right: -50vw;
}

/* Botón WA menú */
.sn-nav-wa {
  background: var(--sn-green); color: #fff !important;
  padding: 8px 16px; border-radius: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none !important;
}
.sn-nav-wa:hover { filter: brightness(1.1); }

/* Quitar padding Astra mobile */
@media (max-width:767px) {
  .hfeed .ast-article-single .entry-content { padding: 0 !important; }
  .entry-content > .wp-block-html { margin: 0 !important; }
}

/* Headings con style inline heredan fuente */
h1[style], h2[style], h3[style], h4[style] { font-family: var(--font-display) !important; }

/* ============================================================
   HERO
============================================================ */
.sn-hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: center;
  padding: 72px 0 56px; overflow: hidden; isolation: isolate;
}
@media (min-width:768px) { .sn-hero { min-height: 100svh; padding: 100px 0 80px; } }

.sn-hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; width: 100%; }
@media (min-width:1024px) { .sn-hero-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }

.sn-hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 7vw, 68px); line-height: 1.1;
  letter-spacing: -0.02em; margin: 0 0 18px;
}
.sn-hero-subtitle-span {
  font-size: clamp(20px, 5vw, 56px); text-transform: uppercase;
  letter-spacing: -0.02em; display: block; margin-top: 4px;
}
.sn-trust-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; color: var(--sn-muted); font-size: 13px; font-weight: 500; margin-top: 24px; }
.sn-trust-item { display: flex; align-items: center; gap: 6px; }
.sn-trust-icon { color: var(--sn-blue); }
@media (min-width:768px) { .sn-trust-row { gap: 24px; font-size: 14px; margin-top: 40px; } }

.sn-hero-app-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: var(--sn-r-xl); border: 1px solid;
  transition: transform 0.3s ease; text-decoration: none !important; color: #fff !important; width: 100%;
}
.sn-hero-app-card:hover { transform: scale(1.02); }
.sn-hero-app-card.oleada { border-color: rgba(0,194,255,0.3);  background: rgba(0,194,255,0.05); }
.sn-hero-app-card.stella  { border-color: rgba(224,64,251,0.3); background: rgba(224,64,251,0.05); }
.sn-hero-app-icon { width: 48px; height: 48px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 24px; }
.sn-hero-app-icon.oleada { background: rgba(0,194,255,0.2);  color: var(--sn-blue); }
.sn-hero-app-icon.stella  { background: rgba(224,64,251,0.2); color: var(--sn-magenta); }
@media (min-width:768px) {
  .sn-hero-app-card { padding: 20px 24px; }
  .sn-hero-app-icon { width: 56px; height: 56px; font-size: 28px; }
}

/* ============================================================
   PROOF BAR
============================================================ */
.sn-proof-bar { background: var(--sn-surface); border-top: 1px solid var(--sn-border); border-bottom: 1px solid var(--sn-border); padding: 20px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.sn-proof-bar::-webkit-scrollbar { display: none; }
.sn-proof-inner { display: flex; flex-wrap: nowrap; align-items: center; gap: 24px; min-width: max-content; padding: 0 16px; }
@media (min-width:768px) { .sn-proof-inner { justify-content: center; min-width: 0; flex-wrap: wrap; gap: 40px; padding: 0 24px; } }
.sn-proof-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; white-space: nowrap; color: #fff; }
@media (min-width:768px) { .sn-proof-item { font-size: 14px; } }

/* ============================================================
   FEATURE CARDS
============================================================ */
.sn-feature-card { padding: 20px 18px; }
.sn-feature-card:hover { border-color: rgba(0,194,255,0.5); }
.sn-feature-icon { width: 40px; height: 40px; background: rgba(0,194,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--sn-blue); font-size: 18px; margin-bottom: 14px; transition: transform 0.3s; }
.sn-feature-card:hover .sn-feature-icon { transform: scale(1.1); }
.sn-feature-card h4 { font-weight: 700; font-size: 16px; margin: 0 0 8px; color: #fff; }
.sn-feature-card p { color: var(--sn-muted); line-height: 1.6; font-size: 13px; margin: 0; }
@media (min-width:768px) { .sn-feature-card { padding: 28px 24px; } .sn-feature-icon { width: 48px; height: 48px; font-size: 22px; margin-bottom: 20px; } .sn-feature-card h4 { font-size: 18px; } .sn-feature-card p { font-size: 15px; } }

/* ============================================================
   APP CARDS
============================================================ */
.sn-app-card { padding: 24px 20px; position: relative; overflow: hidden; }
.sn-app-card.oleada { border-color: rgba(0,194,255,0.2);  background: linear-gradient(135deg,rgba(0,194,255,0.08),transparent); }
.sn-app-card.stella  { border-color: rgba(224,64,251,0.2); background: linear-gradient(135deg,rgba(224,64,251,0.08),transparent); }
.sn-app-icon-wrap { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 28px; }
.sn-app-icon-wrap.oleada { background: var(--sn-blue);    color: #0D0D0D; }
.sn-app-icon-wrap.stella  { background: var(--sn-magenta); color: #fff; }
.sn-app-card h3 { font-weight: 800; font-size: clamp(20px,4vw,28px); margin: 0 0 12px; }
.sn-app-card h3.oleada { color: var(--sn-blue); }
.sn-app-card h3.stella  { color: var(--sn-magenta); }
.sn-app-card p.desc { color: var(--sn-muted); font-size: 14px; line-height: 1.65; margin-bottom: 18px; }
@media (min-width:768px) { .sn-app-card { padding: 40px 36px; } .sn-app-card p.desc { font-size: 17px; margin-bottom: 24px; } }

.sn-features { list-style: none; padding: 0; margin: 0 0 20px; }
.sn-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; font-weight: 500; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sn-features li:last-child { border-bottom: none; }
.sn-chk-blue { color: var(--sn-blue);    font-size: 16px; flex-shrink: 0; }
.sn-chk-mag  { color: var(--sn-magenta); font-size: 16px; flex-shrink: 0; }
@media (min-width:768px) { .sn-features { margin-bottom: 28px; } .sn-features li { font-size: 15px; padding: 8px 0; } }

.sn-app-top-badge { position: absolute; top: 0; right: 0; padding: 12px; }
.sn-app-top-badge span { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 100px; }
.sn-app-top-badge.oleada span { background: rgba(0,194,255,0.15);  color: var(--sn-blue); }
.sn-app-top-badge.stella  span { background: rgba(224,64,251,0.15); color: var(--sn-magenta); }

/* ============================================================
   DEVICE CARDS
============================================================ */
.sn-device-card { padding: 18px 12px; text-align: center; cursor: pointer; text-decoration: none !important; display: block; }
.sn-device-card:hover { border-color: var(--sn-blue); }
.sn-device-icon { font-size: 28px; margin-bottom: 10px; display: block; transition: transform 0.3s; }
.sn-device-card:hover .sn-device-icon { transform: scale(1.1); }
.sn-device-card h5 { font-weight: 700; font-size: 14px; margin: 0 0 6px; color: #fff; }
.sn-device-card p { color: var(--sn-muted); font-size: 11px; line-height: 1.5; margin: 0 0 8px; }
.sn-device-link { font-size: 11px; color: var(--sn-muted); font-weight: 600; display: inline-block; transition: color 0.2s; }
.sn-device-card:hover .sn-device-link { color: var(--sn-blue); }
@media (min-width:768px) { .sn-device-card { padding: 28px 20px; } .sn-device-icon { font-size: 40px; margin-bottom: 16px; } .sn-device-card h5 { font-size: 17px; } .sn-device-card p { font-size: 13px; } .sn-device-link { font-size: 12px; } }

/* ============================================================
   TESTIMONIALS
============================================================ */
.sn-testi-card { padding: 20px 16px; border-top: 4px solid var(--sn-gold); }
.sn-testi-text { color: var(--sn-muted); font-style: italic; line-height: 1.7; font-size: 13px; margin-bottom: 14px; }
.sn-testi-author { font-weight: 700; font-size: 13px; color: rgba(255,255,255,0.9); font-family: var(--font-display); }
.sn-stars { color: var(--sn-gold); font-size: 12px; margin-top: 6px; letter-spacing: 2px; }
@media (min-width:768px) { .sn-testi-card { padding: 28px 24px; } .sn-testi-text { font-size: 15px; margin-bottom: 20px; } .sn-testi-author { font-size: 14px; } }

/* ============================================================
   FAQ
============================================================ */
.sn-faq-item { border-bottom: 1px solid var(--sn-border); }
.sn-faq-btn { width: 100%; padding: 16px 0; display: flex; align-items: flex-start; justify-content: space-between; background: none; border: none; cursor: pointer; text-align: left; gap: 14px; color: rgba(255,255,255,0.9); }
.sn-faq-btn:hover .sn-faq-q-text { color: var(--sn-blue); }
.sn-faq-q-text { font-family: var(--font-display); font-weight: 600; font-size: clamp(14px,3.5vw,18px); transition: color 0.2s; line-height: 1.4; }
.sn-faq-arrow { color: var(--sn-muted); font-size: 18px; flex-shrink: 0; transition: transform 0.3s,color 0.3s; font-style: normal; margin-top: 2px; }
.sn-faq-item.open .sn-faq-arrow { transform: rotate(180deg); color: var(--sn-blue); }
.sn-faq-answer { display: none; padding-bottom: 18px; color: var(--sn-muted); line-height: 1.75; font-size: 14px; }
.sn-faq-item.open .sn-faq-answer { display: block; }
.sn-faq-item.stella-faq .sn-faq-btn:hover .sn-faq-q-text { color: var(--sn-magenta); }
.sn-faq-item.stella-faq.open .sn-faq-arrow { color: var(--sn-magenta); }
@media (min-width:768px) { .sn-faq-btn { padding: 22px 0; } .sn-faq-answer { font-size: 15px; padding-bottom: 22px; } }

/* ============================================================
   PLAN CARDS
============================================================ */
.sn-plan-card { padding: 22px 18px; display: flex; flex-direction: column; position: relative; }
.sn-plan-card.popular-blue { border-color: var(--sn-blue);    box-shadow: 0 20px 40px rgba(0,194,255,0.1); }
.sn-plan-card.popular-mag  { border-color: var(--sn-magenta); box-shadow: 0 20px 40px rgba(224,64,251,0.1); background: rgba(224,64,251,0.04); }
.sn-plan-pop-badge { position: absolute; top: 0; right: 22px; transform: translateY(-50%); font-size: 9px; font-weight: 900; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; font-family: var(--font-display); }
.sn-plan-pop-badge.blue { background: var(--sn-blue);    color: #0D0D0D; }
.sn-plan-pop-badge.mag  { background: var(--sn-magenta); color: #fff; }
.sn-plan-name { font-weight: 700; font-size: 17px; margin: 0 0 6px; color: #fff; }
.sn-plan-price-wrap { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; }
.sn-plan-price { font-weight: 900; font-size: 34px; color: #fff; font-family: var(--font-display); }
.sn-plan-period { color: var(--sn-muted); font-size: 13px; }
.sn-plan-desc { color: var(--sn-muted); font-size: 13px; line-height: 1.6; margin-bottom: 20px; }
.sn-plan-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.sn-plan-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sn-plan-features li:last-child { border-bottom: none; }
.sn-plan-features .highlight { color: var(--sn-blue); font-weight: 700; }
@media (min-width:768px) { .sn-plan-card { padding: 32px 28px; } .sn-plan-name { font-size: 20px; } .sn-plan-price { font-size: 42px; } .sn-plan-features li { font-size: 14px; padding: 8px 0; } }

/* ============================================================
   SPLIT FEATURE — Stella
============================================================ */
.sn-split-feature { padding: 18px 16px; display: flex; gap: 14px; align-items: flex-start; flex-direction: column; margin-bottom: 10px; }
.sn-split-feature:hover { border-color: var(--sn-magenta); }
.sn-split-feature-icon { color: var(--sn-magenta); font-size: 26px; flex-shrink: 0; }
.sn-split-feature h3 { font-weight: 700; font-size: 16px; margin: 0 0 6px; }
.sn-split-feature p  { color: var(--sn-muted); line-height: 1.6; margin: 0; font-size: 13px; }
@media (min-width:640px) { .sn-split-feature { flex-direction: row; padding: 24px; } .sn-split-feature h3 { font-size: 19px; } .sn-split-feature p { font-size: 15px; } }

.sn-prose h2 { font-weight: 700; font-size: clamp(18px,3.5vw,26px); margin: 0 0 14px; }
.sn-prose h3 { font-weight: 700; font-size: 15px; margin: 0 0 8px; text-decoration: underline; text-underline-offset: 4px; }
.sn-prose p  { color: var(--sn-muted); line-height: 1.75; margin-bottom: 18px; font-size: 14px; }
.sn-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 12px; }
.sn-tag { font-size: 9px; font-weight: 700; color: var(--sn-muted); border: 1px solid var(--sn-border); padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   BRIDGE PAGE
============================================================ */
.sn-bridge-wrap { min-height: 100svh; display: flex; align-items: center; justify-content: center; padding: 16px; background: var(--sn-bg); }
.sn-bridge-card { max-width: 440px; width: 100%; padding: 22px 18px; text-align: center; border-top: 4px solid; }
.sn-bridge-card.oleada { border-top-color: var(--sn-blue); }
.sn-bridge-card.stella  { border-top-color: var(--sn-magenta); }
.sn-bridge-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 26px; }
.sn-bridge-icon.oleada { background: rgba(0,194,255,0.15);  color: var(--sn-blue); }
.sn-bridge-icon.stella  { background: rgba(224,64,251,0.15); color: var(--sn-magenta); }
@media (min-width:640px) { .sn-bridge-card { padding: 32px; } .sn-bridge-icon { width: 64px; height: 64px; font-size: 32px; margin-bottom: 24px; } }

/* ============================================================
   LEGAL PAGES
============================================================ */
.sn-legal-wrap { max-width: 860px; margin: 0 auto; padding: 56px 16px 48px; }
@media (min-width:768px) { .sn-legal-wrap { padding: 96px 24px 80px; } }
.sn-legal-icon { width: 44px; height: 44px; background: rgba(0,194,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--sn-blue); font-size: 22px; margin-bottom: 14px; }
.sn-legal-content { padding: 18px 16px; }
@media (min-width:640px) { .sn-legal-content { padding: 28px; } }
@media (min-width:768px) { .sn-legal-content { padding: 48px; } }
.sn-legal-content h3 { font-weight: 700; font-size: 16px; margin: 24px 0 8px; color: #fff; }
@media (min-width:768px) { .sn-legal-content h3 { font-size: 20px; margin: 36px 0 12px; } }
.sn-legal-content p, .sn-legal-content li { color: var(--sn-muted); line-height: 1.8; margin-bottom: 10px; font-size: 14px; }
@media (min-width:768px) { .sn-legal-content p, .sn-legal-content li { font-size: 15px; } }
.sn-legal-content ul { padding-left: 20px; }
.sn-legal-content strong { color: rgba(255,255,255,0.9); }

/* ============================================================
   FOOTER
============================================================ */
.sn-footer { background: var(--sn-bg); border-top: 1px solid var(--sn-border); padding: 44px 0 20px; }
@media (min-width:768px) { .sn-footer { padding: 72px 0 36px; } }
.sn-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
@media (min-width:768px) { .sn-footer-grid { grid-template-columns: repeat(4,1fr); gap: 40px; margin-bottom: 60px; } }
.sn-footer h6 { font-weight: 700; font-size: 12px; color: #fff; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.06em; }
@media (min-width:768px) { .sn-footer h6 { font-size: 14px; margin-bottom: 18px; } }
.sn-footer ul { list-style: none; padding: 0; margin: 0; }
.sn-footer ul li { margin-bottom: 8px; }
.sn-footer ul li a { color: var(--sn-muted); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.sn-footer ul li a:hover { color: var(--sn-blue); }
@media (min-width:768px) { .sn-footer ul li { margin-bottom: 12px; } .sn-footer ul li a { font-size: 14px; } }
.sn-dmca-box { background: rgba(0,0,0,0.4); padding: 14px; border-radius: 10px; border: 1px solid rgba(42,42,42,0.4); margin-top: 20px; }
.sn-dmca-box p { font-size: 9px; color: var(--sn-muted); line-height: 1.6; text-transform: uppercase; letter-spacing: 0.04em; text-align: center; margin: 0; }
@media (min-width:768px) { .sn-dmca-box { padding: 20px; } .sn-dmca-box p { font-size: 10px; } }
.sn-footer-border { border-top: 1px solid rgba(42,42,42,0.5); padding-top: 20px; }
.sn-footer-copy { font-size: 11px; color: rgba(160,160,160,0.4); text-align: center; margin-top: 12px; }

/* ============================================================
   WHATSAPP FLOTANTE
============================================================ */
.sn-wa-float {
  position: fixed; bottom: 16px; right: 16px; z-index: 9999;
  background: var(--sn-green); color: #fff !important;
  border-radius: 50%; width: 52px; height: 52px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: wa-pulse 2.5s infinite; transition: transform 0.2s;
  text-decoration: none !important; border: none; cursor: pointer;
}
.sn-wa-float:hover { transform: scale(1.08); }
.sn-wa-text { display: none; }
@media (min-width:640px) {
  .sn-wa-float { width: auto; height: auto; padding: 14px 22px; border-radius: 14px; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 15px; bottom: 24px; right: 24px; }
  .sn-wa-text { display: inline; }
}