/* ========================================
   REDES SOCIALES - ADICCIÓN DIGITAL
   Tema: Neon Púrpura / Magenta con fondo oscuro
   ======================================== */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #12122a;
    --bg-card: rgba(18, 18, 42, 0.65);
    --neon-magenta: #ff2d7b;
    --neon-purple: #a855f7;
    --neon-cyan: #06d6a0;
    --neon-blue: #3b82f6;
    --neon-pink: #ec4899;
    --gradient-main: linear-gradient(135deg, #ff2d7b, #a855f7, #3b82f6);
    --gradient-glow: linear-gradient(135deg, #ff2d7b55, #a855f755);
    --text-primary: #f0f0ff;
    --text-secondary: #b0b0d0;
    --text-muted: #7070a0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --shadow-neon: 0 0 30px rgba(255, 45, 123, 0.15);
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ---------- PARTÍCULAS ANIMADAS DE FONDO ---------- */
.rs-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.rs-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    animation: rs-float-up 18s linear infinite;
}

.rs-particle:nth-child(1) {
    width: 6px;
    height: 6px;
    background: var(--neon-magenta);
    left: 8%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.rs-particle:nth-child(2) {
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    left: 20%;
    animation-delay: 3s;
    animation-duration: 24s;
}

.rs-particle:nth-child(3) {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    left: 35%;
    animation-delay: 5s;
    animation-duration: 18s;
}

.rs-particle:nth-child(4) {
    width: 5px;
    height: 5px;
    background: var(--neon-blue);
    left: 50%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.rs-particle:nth-child(5) {
    width: 7px;
    height: 7px;
    background: var(--neon-pink);
    left: 65%;
    animation-delay: 7s;
    animation-duration: 19s;
}

.rs-particle:nth-child(6) {
    width: 4px;
    height: 4px;
    background: var(--neon-magenta);
    left: 78%;
    animation-delay: 1s;
    animation-duration: 25s;
}

.rs-particle:nth-child(7) {
    width: 6px;
    height: 6px;
    background: var(--neon-purple);
    left: 88%;
    animation-delay: 4s;
    animation-duration: 21s;
}

.rs-particle:nth-child(8) {
    width: 5px;
    height: 5px;
    background: var(--neon-cyan);
    left: 95%;
    animation-delay: 6s;
    animation-duration: 17s;
}

.rs-particle:nth-child(9) {
    width: 3px;
    height: 3px;
    background: var(--neon-blue);
    left: 12%;
    animation-delay: 8s;
    animation-duration: 23s;
}

.rs-particle:nth-child(10) {
    width: 5px;
    height: 5px;
    background: var(--neon-pink);
    left: 42%;
    animation-delay: 10s;
    animation-duration: 16s;
}

@keyframes rs-float-up {
    0% {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.25;
    }

    90% {
        opacity: 0.25;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ---------- NAVBAR FIJA ---------- */
.rs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.rs-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.rs-nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.rs-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.rs-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.35s ease;
}

.rs-nav-links a:hover {
    color: var(--text-primary);
}

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

.rs-nav-home {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
}

/* ---------- NAVBAR DROPDOWN ---------- */
.rs-nav-dropdown {
    position: relative;
}

.rs-nav-dropdown>a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rs-nav-dropdown>a .rs-dropdown-arrow {
    display: inline-block;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.rs-nav-dropdown:hover>a .rs-dropdown-arrow {
    transform: rotate(180deg);
}

.rs-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: rgba(12, 12, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 45, 123, 0.08);
    z-index: 1001;
}

.rs-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: rgba(12, 12, 30, 0.95);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-top: 1px solid var(--glass-border);
}

.rs-nav-dropdown:hover .rs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.rs-dropdown-menu li {
    margin: 0;
}

.rs-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-secondary) !important;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    -webkit-text-fill-color: var(--text-secondary) !important;
    background: transparent !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.rs-dropdown-menu li a::after {
    display: none !important;
}

.rs-dropdown-menu li a .rs-drop-emoji {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.rs-dropdown-menu li a .rs-drop-text {
    display: flex;
    flex-direction: column;
}

.rs-dropdown-menu li a .rs-drop-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.88rem;
}

.rs-dropdown-menu li a .rs-drop-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

.rs-dropdown-menu li a:hover {
    background: rgba(255, 45, 123, 0.08) !important;
    color: var(--text-primary) !important;
    -webkit-text-fill-color: var(--text-primary) !important;
    transform: translateX(4px);
}

.rs-dropdown-menu li a:hover .rs-drop-emoji {
    background: rgba(255, 45, 123, 0.15);
}

.rs-dropdown-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ---------- HERO SECTION ---------- */
.rs-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    overflow: hidden;
}

/* Gradiente de fondo animado */
.rs-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 45, 123, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%);
    animation: rs-bg-shift 12s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes rs-bg-shift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-3%, 2%) scale(1.05);
    }

    100% {
        transform: translate(3%, -2%) scale(1);
    }
}

.rs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

/* Emoji grande animado */
.rs-hero-icon {
    font-size: 5rem;
    display: inline-block;
    animation: rs-icon-pulse 3s ease-in-out infinite;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 30px rgba(255, 45, 123, 0.4));
}

@keyframes rs-icon-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(-5deg);
    }

    50% {
        transform: scale(1.05) rotate(5deg);
    }

    75% {
        transform: scale(1.12) rotate(-3deg);
    }
}

.rs-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #ff2d7b 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rs-title-shimmer 6s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes rs-title-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.rs-hero .rs-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* Botón CTA Hero */
.rs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 38px;
    border: none;
    border-radius: 60px;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    box-shadow: 0 4px 30px rgba(255, 45, 123, 0.25);
}

.rs-cta-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 40px rgba(255, 45, 123, 0.4);
}

.rs-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    animation: rs-btn-shine 4s ease-in-out infinite;
}

@keyframes rs-btn-shine {
    0% {
        left: -60%;
    }

    40% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* ---------- UTILIDADES DE SECCIÓN ---------- */
.rs-section {
    position: relative;
    padding: 100px 40px;
    z-index: 1;
}

.rs-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-section-intro {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ---------- ESTADÍSTICAS ALARMANTES ---------- */
.rs-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rs-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.rs-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: rgba(255, 45, 123, 0.2);
}

.rs-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.rs-stat-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}

.rs-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.rs-stat-label {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- SECCIÓN: SEÑALES DE ADICCIÓN ---------- */
.rs-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.rs-sign-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.rs-sign-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
}

.rs-sign-card .rs-sign-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    position: absolute;
    top: -8px;
    right: 16px;
    background: linear-gradient(180deg, rgba(255, 45, 123, 0.12), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    pointer-events: none;
}

.rs-sign-card .rs-sign-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.rs-sign-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rs-sign-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Barra de progreso: severidad */
.rs-severity-bar {
    margin-top: 18px;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.rs-severity-fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rs-severity-fill.high {
    background: linear-gradient(90deg, #ff2d7b, #ff6b6b);
}

.rs-severity-fill.medium {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.rs-severity-fill.low {
    background: linear-gradient(90deg, #06d6a0, #3b82f6);
}

/* ---------- SECCIÓN: IMPACTO EN LA SALUD ---------- */
.rs-impact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.rs-impact-visual {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.rs-brain-icon {
    font-size: 6rem;
    display: block;
    margin-bottom: 24px;
    animation: rs-brain-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.4));
}

@keyframes rs-brain-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.rs-impact-meter {
    width: 100%;
    margin-bottom: 12px;
}

.rs-meter-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.rs-meter-track {
    width: 100%;
    height: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.rs-meter-value {
    height: 100%;
    border-radius: 10px;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rs-meter-value.anxiety {
    background: linear-gradient(90deg, #ff2d7b, #f97316);
}

.rs-meter-value.depression {
    background: linear-gradient(90deg, #a855f7, #3b82f6);
}

.rs-meter-value.sleep {
    background: linear-gradient(90deg, #3b82f6, #06d6a0);
}

.rs-meter-value.attention {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

.rs-impact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rs-impact-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.rs-impact-item:hover {
    transform: translateX(6px);
    border-color: rgba(255, 45, 123, 0.2);
}

.rs-impact-item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 45, 123, 0.08);
    border-radius: 12px;
}

.rs-impact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.rs-impact-item p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ---------- SECCIÓN: COMPARACIÓN DE TIEMPO ---------- */
.rs-time-section {
    background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.03), transparent);
}

.rs-time-bars {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.rs-time-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rs-time-label {
    min-width: 160px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.rs-time-bar-track {
    flex: 1;
    height: 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
}

.rs-time-bar-fill {
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    width: 0;
    transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.rs-time-bar-fill.social {
    background: linear-gradient(90deg, #ff2d7b, #a855f7);
}

.rs-time-bar-fill.exercise {
    background: linear-gradient(90deg, #06d6a0, #3b82f6);
}

.rs-time-bar-fill.reading {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.rs-time-bar-fill.family {
    background: linear-gradient(90deg, #ec4899, #a855f7);
}

.rs-time-bar-fill.sleep2 {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}

/* ---------- SECCIÓN: CONSEJOS / DESINTOXICACIÓN ---------- */
.rs-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.rs-tip-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.rs-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.25);
}

/* Brillo deslizante */
.rs-tip-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
}

.rs-tip-card:hover::after {
    left: 130%;
}

.rs-tip-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.rs-tip-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.rs-tip-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.rs-tip-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- SECCIÓN: TESTIMONIOS ---------- */
.rs-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.rs-testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.rs-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(255, 45, 123, 0.08);
}

.rs-testimonial-card .rs-quote-mark {
    font-size: 4rem;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.rs-testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 18px;
}

.rs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rs-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.rs-testimonial-author-info .name {
    font-weight: 600;
    font-size: 0.9rem;
}

.rs-testimonial-author-info .role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- SECCIÓN: TEST RÁPIDO ---------- */
.rs-quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

.rs-quiz-question {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.rs-quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.rs-quiz-option {
    padding: 14px 24px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-secondary);
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.rs-quiz-option:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(168, 85, 247, 0.08);
    color: var(--text-primary);
    transform: translateX(6px);
}

.rs-quiz-option.selected {
    border-color: var(--neon-magenta);
    background: rgba(255, 45, 123, 0.1);
    color: var(--text-primary);
}

.rs-quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 60px;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 45, 123, 0.3);
}

.rs-quiz-result {
    display: none;
    margin-top: 24px;
    padding: 24px;
    border-radius: var(--radius-md);
    background: rgba(255, 45, 123, 0.06);
    border: 1px solid rgba(255, 45, 123, 0.15);
}

.rs-quiz-result.show {
    display: block;
    animation: rs-fade-in 0.5s ease;
}

.rs-quiz-result h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-quiz-result p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

@keyframes rs-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- SCROLL REVEAL (animación de entrada) ---------- */
.rs-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.rs-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- FOOTER ---------- */
.rs-footer {
    text-align: center;
    padding: 60px 20px 40px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.rs-footer p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.rs-footer .rs-footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-size: 1rem;
}

.rs-footer-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.rs-footer-back:hover {
    color: var(--neon-magenta);
}

/* ---------- BLOG: PAGE HEADER / BREADCRUMB ---------- */
.rs-page-header {
    padding: 120px 40px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.rs-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.rs-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rs-breadcrumb a:hover {
    color: var(--neon-magenta);
}

.rs-breadcrumb .sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.rs-breadcrumb .current {
    color: var(--text-secondary);
    font-weight: 500;
}

.rs-page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.rs-page-header .rs-page-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ---------- BLOG: ARTICLE TEXT BLOCKS ---------- */
.rs-article-block {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 28px 32px;
    border-left: 4px solid var(--neon-magenta);
    background: var(--glass-bg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    border-top: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.rs-article-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.rs-article-block p:last-child {
    margin-bottom: 0;
}

.rs-article-block.accent-purple {
    border-left-color: var(--neon-purple);
}

.rs-article-block.accent-cyan {
    border-left-color: var(--neon-cyan);
}

.rs-article-block.accent-blue {
    border-left-color: var(--neon-blue);
}

/* ---------- BLOG: INFO BOXES ---------- */
.rs-info-box {
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.rs-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.rs-info-box.definition {
    background: rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.15);
}

.rs-info-box.definition::before {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
}

.rs-info-box.warning-box {
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.15);
}

.rs-info-box.warning-box::before {
    background: linear-gradient(90deg, #f59e0b, #f97316);
}

.rs-info-box.tip-box {
    background: rgba(6, 214, 160, 0.06);
    border-color: rgba(6, 214, 160, 0.15);
}

.rs-info-box.tip-box::before {
    background: linear-gradient(90deg, var(--neon-cyan), #3b82f6);
}

.rs-info-box-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rs-info-box p,
.rs-info-box li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

.rs-info-box ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.rs-info-box ul li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.rs-info-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neon-magenta);
    font-weight: 600;
}

/* ---------- BLOG: OBJECTIVES LIST ---------- */
.rs-objectives-list {
    max-width: 800px;
    margin: 0 auto 40px;
    list-style: none;
    padding: 0;
    counter-reset: objective;
}

.rs-objectives-list li {
    counter-increment: objective;
    padding: 16px 20px 16px 60px;
    margin-bottom: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rs-objectives-list li:hover {
    transform: translateX(6px);
    border-color: rgba(168, 85, 247, 0.3);
}

.rs-objectives-list li::before {
    content: counter(objective);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------- BLOG: NAVIGATION CARDS ---------- */
.rs-blog-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.rs-blog-nav-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.rs-blog-nav-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-neon);
    border-color: rgba(255, 45, 123, 0.25);
}

.rs-blog-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
}

.rs-blog-nav-card .nav-card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.rs-blog-nav-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-blog-nav-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.rs-blog-nav-card .nav-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-magenta);
    font-size: 0.88rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.rs-blog-nav-card:hover .nav-card-arrow {
    gap: 12px;
}

/* ---------- BLOG: CAUSE CARDS ---------- */
.rs-cause-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rs-cause-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.rs-cause-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.25);
}

.rs-cause-card .cause-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    position: absolute;
    top: -5px;
    right: 16px;
    background: linear-gradient(180deg, rgba(255, 45, 123, 0.1), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    pointer-events: none;
}

.rs-cause-card .cause-emoji {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 14px;
}

.rs-cause-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rs-cause-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ---------- BLOG: CONSEQUENCE GROUPS ---------- */
.rs-consequence-groups {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rs-consequence-group {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.rs-consequence-group:hover {
    border-color: rgba(255, 45, 123, 0.15);
}

.rs-consequence-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.rs-consequence-group.psych::before {
    background: linear-gradient(180deg, #ff2d7b, #a855f7);
}

.rs-consequence-group.social::before {
    background: linear-gradient(180deg, #a855f7, #3b82f6);
}

.rs-consequence-group.academic::before {
    background: linear-gradient(180deg, #f59e0b, #f97316);
}

.rs-consequence-group.physical::before {
    background: linear-gradient(180deg, #06d6a0, #3b82f6);
}

.rs-consequence-group .group-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.rs-consequence-group .group-emoji {
    font-size: 1.8rem;
}

.rs-consequence-group .group-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.rs-consequence-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.rs-consequence-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: background 0.3s ease;
}

.rs-consequence-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.rs-consequence-list li .item-emoji {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- BLOG: ACTION TIMELINE ---------- */
.rs-action-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.rs-action-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--neon-magenta), var(--neon-purple), var(--neon-cyan));
    border-radius: 3px;
}

.rs-timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rs-timeline-item:hover {
    transform: translateX(6px);
    border-color: rgba(168, 85, 247, 0.3);
}

.rs-timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 28px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-main);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 12px rgba(255, 45, 123, 0.4);
}

.rs-timeline-item .timeline-step {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    display: block;
}

.rs-timeline-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.rs-timeline-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ---------- BLOG: FOLLETO / BROCHURE ---------- */
.rs-folleto {
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid transparent;
    border-image: var(--gradient-main) 1;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.rs-folleto-inner {
    background: linear-gradient(135deg, rgba(18, 18, 42, 0.9), rgba(10, 10, 26, 0.95));
    padding: 48px 40px;
    text-align: center;
}

.rs-folleto-header {
    margin-bottom: 32px;
}

.rs-folleto-header .folleto-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.rs-folleto-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.rs-folleto-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rs-folleto-tips {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 32px;
}

.rs-folleto-tips li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.rs-folleto-tips li:last-child {
    border-bottom: none;
}

.rs-folleto-tips .tip-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rs-folleto-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 60px;
    background: var(--gradient-main);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-folleto-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 45, 123, 0.3);
}

.rs-folleto-footer {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ---------- BLOG: CONCLUSION BOX ---------- */
.rs-conclusion {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    text-align: center;
}

.rs-conclusion .conclusion-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.rs-conclusion h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-conclusion p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 650px;
    margin: 0 auto;
}

/* ---------- BLOG: CTA BANNER ---------- */
.rs-cta-banner {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(255, 45, 123, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid rgba(255, 45, 123, 0.15);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rs-cta-banner h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.rs-cta-banner p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- HAMBURGER MENU ---------- */
.rs-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.rs-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- BLOG: INLINE SECTION IMAGES ---------- */
.rs-section-image {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.rs-section-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    background: rgba(10, 10, 26, 0.5);
    transition: transform 0.6s ease;
}

.rs-section-image:hover img {
    transform: scale(1.04);
}

.rs-section-image .rs-img-caption {
    background: linear-gradient(transparent, rgba(10, 10, 26, 0.9));
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Side-by-side: text left, image right */
.rs-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 48px;
    align-items: center;
}

.rs-text-image.reverse {
    direction: rtl;
}

.rs-text-image.reverse>* {
    direction: ltr;
}

.rs-text-image .rs-text-side p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 12px;
}

.rs-text-image .rs-text-side p:last-child {
    margin-bottom: 0;
}

.rs-text-image .rs-text-side h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.rs-text-image .rs-image-side {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
}

.rs-text-image .rs-image-side img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
    background: rgba(10, 10, 26, 0.5);
    transition: transform 0.5s ease;
}

.rs-text-image .rs-image-side:hover img {
    transform: scale(1.05);
}

/* Small decorative accent image */
.rs-accent-image {
    max-width: 500px;
    margin: 32px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
}

.rs-accent-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    background: rgba(10, 10, 26, 0.5);
    filter: brightness(0.85);
    transition: filter 0.4s ease, transform 0.5s ease;
}

.rs-accent-image:hover img {
    filter: brightness(1);
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .rs-text-image {
        grid-template-columns: 1fr;
    }

    .rs-text-image.reverse {
        direction: ltr;
    }

    .rs-section-image img {
        max-height: 280px;
    }

    .rs-text-image .rs-image-side img {
        max-height: 240px;
    }
}

/* ---------- BLOG: PHOTO GALLERY ---------- */
.rs-photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.rs-photo-gallery.layout-featured {
    grid-template-columns: repeat(2, 1fr);
}

.rs-photo-gallery.layout-featured .rs-photo-frame:first-child {
    grid-column: 1 / -1;
}

.rs-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.rs-photo-frame:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 45, 123, 0.15);
    border-color: rgba(255, 45, 123, 0.3);
}

.rs-photo-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    z-index: 2;
}

.rs-photo-frame img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    display: block;
    background: rgba(10, 10, 26, 0.5);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.rs-photo-frame:first-child img {
    max-height: 400px;
}

.rs-photo-frame:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.rs-photo-frame .rs-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(10, 10, 26, 0.92));
    z-index: 1;
}

.rs-photo-frame .rs-photo-caption {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.rs-photo-frame .rs-photo-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Glow ring on hover */
.rs-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: inset 0 0 30px rgba(255, 45, 123, 0.1);
    pointer-events: none;
    z-index: 1;
}

.rs-photo-frame:hover::after {
    opacity: 1;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .rs-navbar {
        padding: 12px 20px;
    }

    .rs-menu-toggle {
        display: block;
    }

    .rs-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 14px;
        align-items: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .rs-nav-links.open {
        display: flex;
    }

    .rs-nav-dropdown .rs-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        min-width: auto;
        width: 100%;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
        border: 1px solid var(--glass-border);
        padding: 6px;
        margin-top: 4px;
    }

    .rs-nav-dropdown .rs-dropdown-menu::before {
        display: none;
    }

    .rs-section {
        padding: 60px 20px;
    }

    .rs-impact-container {
        grid-template-columns: 1fr;
    }

    .rs-time-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-time-label {
        min-width: auto;
    }

    .rs-quiz-container {
        padding: 30px 20px;
    }

    .rs-hero h1 {
        font-size: 2rem;
    }

    .rs-page-header {
        padding: 100px 20px 40px;
    }

    .rs-article-block {
        padding: 20px 18px;
    }

    .rs-folleto-inner {
        padding: 32px 20px;
    }

    .rs-action-timeline {
        padding-left: 32px;
    }

    .rs-consequence-group {
        padding: 24px 20px;
    }

    .rs-consequence-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rs-stats-grid {
        grid-template-columns: 1fr;
    }

    .rs-signs-grid,
    .rs-tips-grid,
    .rs-testimonial-grid,
    .rs-cause-grid,
    .rs-blog-nav,
    .rs-photo-gallery,
    .rs-photo-gallery.layout-featured {
        grid-template-columns: 1fr;
    }

    .rs-photo-gallery.layout-featured .rs-photo-frame:first-child {
        grid-column: auto;
    }

    .rs-conclusion {
        padding: 28px 20px;
    }

    .rs-cta-banner {
        padding: 32px 20px;
    }
}