/* ============================================
   VARIABLES Y RESET
   ============================================ */

:root {
    --neon-cyan: #00FFFF;
    --neon-magenta: #FF00FF;
    --neon-cyan-soft: rgba(0, 255, 255, 0.3);
    --neon-magenta-soft: rgba(255, 0, 255, 0.3);
    --dark-bg: #0a0a0f;
    --dark-bg-secondary: #151520;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-neon: linear-gradient(135deg, var(--neon-cyan-soft), var(--neon-magenta-soft));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

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

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

.creator-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan-soft);
    border-radius: 8px;
    margin-left: 2rem;
}

.creator-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.creator-name {
    font-size: 0.9rem;
    color: var(--neon-cyan);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    padding-top: 80px;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.particle:nth-child(2n) {
    background: var(--neon-magenta);
    box-shadow: 0 0 10px var(--neon-magenta);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    animation-duration: 25s;
    width: 6px;
    height: 6px;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--neon-cyan-soft) 0%, transparent 70%),
                radial-gradient(circle at 80% 20%, var(--neon-magenta-soft) 0%, transparent 50%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.title-line {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

.title-line:hover {
    transform: scale(1.05);
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.title-line:hover::before {
    opacity: 0.3;
    filter: blur(10px);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--text-primary), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--neon-cyan-soft);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px var(--neon-cyan-soft)); }
    to { filter: drop-shadow(0 0 20px var(--neon-cyan)); }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-copy {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.stat-highlight {
    color: var(--neon-magenta);
    font-weight: 800;
    font-size: 1.4em;
    display: inline-block;
    animation: pulseStat 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--neon-magenta-soft);
    font-family: 'Montserrat', sans-serif;
}

@keyframes pulseStat {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px var(--neon-magenta-soft);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 0 30px var(--neon-magenta);
    }
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-button {
    background: var(--gradient-neon);
    border: 2px solid var(--neon-cyan);
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-cyan-soft);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    transform: rotate(45deg);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.stat-link {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   SECTIONS GENERAL
   ============================================ */

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
    width: 100%;
    transition: transform 0.3s ease;
}

.section-title:hover {
    transform: scale(1.02);
}

.section-quote {
    font-size: clamp(1.3rem, 3vw, 2rem);
    text-align: center;
    color: var(--neon-magenta);
    font-weight: 600;
    margin-bottom: 4rem;
    font-style: italic;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px var(--neon-magenta-soft);
    animation: quoteGlow 3s ease-in-out infinite;
}

@keyframes quoteGlow {
    0%, 100% {
        text-shadow: 0 0 20px var(--neon-magenta-soft);
    }
    50% {
        text-shadow: 0 0 30px var(--neon-magenta);
    }
}

/* ============================================
   REFLEXIÓN SECTION
   ============================================ */

.reflexion-section {
    background: var(--dark-bg-secondary);
    position: relative;
    overflow: hidden;
}

.reflexion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, var(--neon-magenta-soft) 0%, transparent 50%);
    opacity: 0.2;
    pointer-events: none;
}

.reflexion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.phone-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.phone-glow {
    position: absolute;
    width: 400px;
    height: 800px;
    background: radial-gradient(circle, var(--neon-cyan-soft) 0%, transparent 70%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(30px);
}

.phone-container:hover .phone-glow {
    opacity: 0.5;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan-soft);
    transition: all 0.5s ease;
    overflow: hidden;
}

.phone-messages {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    transition: opacity 0.5s ease;
}

.message {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 3px solid #ff6b6b;
    font-size: 0.9rem;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.phone-screen:hover .message {
    opacity: 0;
}

.phone-silhouette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phone-screen:hover .phone-silhouette {
    opacity: 1;
}

.silhouette-person {
    width: 200px;
    height: 300px;
    background: linear-gradient(180deg, transparent, var(--neon-magenta-soft));
    border-radius: 50% 50% 0 0;
    position: relative;
    animation: sadPulse 2s ease-in-out infinite;
}

.silhouette-person::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--neon-magenta);
    border-top: none;
    border-radius: 0 0 50% 50%;
}

@keyframes sadPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

.hover-hint {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.reflexion-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.reflexion-copy {
    margin-bottom: 1.5rem;
}

.source-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.source-link:hover {
    color: var(--neon-magenta);
}

.testimonials {
    margin-top: 4rem;
}

.testimonials h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan-soft);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-cyan-soft);
    border-color: var(--neon-cyan);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.testimonial-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSABILIDAD SECTION
   ============================================ */

.responsabilidad-section {
    background: var(--dark-bg);
    position: relative;
}

.chat-simulator {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--neon-cyan-soft);
    box-shadow: 0 0 40px var(--neon-cyan-soft);
}

.simulator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.simulator-header h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.simulator-header p {
    color: var(--text-secondary);
}

.chat-container {
    margin: 2rem 0;
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-avatar {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-neon);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pulse-avatar {
    animation: pulseAvatar 2s ease-in-out infinite;
}

@keyframes pulseAvatar {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px var(--neon-cyan-soft);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px var(--neon-cyan);
    }
}

.typing-indicator {
    position: relative;
}

.typing-dots {
    display: flex;
    gap: 4px;
    position: absolute;
    bottom: 10px;
    right: 15px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.message-bubble {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan-soft);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    max-width: 70%;
}

.message-bubble p {
    margin: 0;
    color: var(--text-primary);
}

.chat-message.sent {
    flex-direction: row-reverse;
}

.chat-message.sent .message-bubble {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--neon-magenta-soft);
}

.chat-options {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.option-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan-soft);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.option-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.option-btn[data-option="empatica"]:hover {
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.option-btn[data-option="toxica"]:hover {
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.chat-response {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--neon-cyan);
    transition: all 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.response-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.response-impact {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.response-impact.positive {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    color: #00ff00;
}

.response-impact.negative {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    color: #ff6b6b;
}

.retry-btn {
    background: var(--gradient-neon);
    border: 2px solid var(--neon-cyan);
    color: var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.retry-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.simulator-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

/* ============================================
   ACCIÓN SECTION
   ============================================ */

.accion-section {
    background: var(--dark-bg-secondary);
    position: relative;
}

.accion-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan-soft);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.step-card:hover::before {
    opacity: 0.1;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px var(--neon-cyan-soft);
}

.step-card.active {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 40px var(--neon-magenta-soft);
}

.step-icon {
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    z-index: 1;
}

.step-card.active .step-details {
    max-height: 1000px;
    margin-top: 1.5rem;
}

.step-details h4 {
    color: var(--neon-magenta);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-details ul {
    list-style: none;
    padding-left: 0;
}

.step-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.step-details li:last-child {
    border-bottom: none;
}

.help-resources {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.resource-card {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--neon-magenta-soft);
    padding: 1.5rem;
    border-radius: 10px;
}

.resource-card h5 {
    color: var(--neon-magenta);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.resource-card p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.resource-card a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: var(--neon-magenta);
}

.emergency-button {
    text-align: center;
    margin-top: 3rem;
}

.emergency-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #ff0000, #ff6b6b);
    color: var(--text-primary);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: pulseEmergency 2s ease-in-out infinite;
}

@keyframes pulseEmergency {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.5); }
    50% { box-shadow: 0 0 50px rgba(255, 0, 0, 0.8); }
}

.emergency-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
}

/* ============================================
   COMUNIDAD SECTION
   ============================================ */

.comunidad-section {
    background: var(--dark-bg);
    position: relative;
}

.comunidad-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.commitment-form {
    background: var(--dark-bg-secondary);
    border: 2px solid var(--neon-cyan-soft);
    border-radius: 20px;
    padding: 2.5rem;
}

.commitment-form h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan-soft);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--neon-cyan-soft);
}

.commitment-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan-soft);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--neon-cyan);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--neon-cyan);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-neon);
    border: 2px solid var(--neon-cyan);
    color: var(--text-primary);
    padding: 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-cyan-soft);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-cyan);
}

.social-wall {
    background: var(--dark-bg-secondary);
    border: 2px solid var(--neon-magenta-soft);
    border-radius: 20px;
    padding: 2.5rem;
}

.social-wall h3 {
    font-size: 2rem;
    color: var(--neon-magenta);
    margin-bottom: 1.5rem;
    text-align: center;
}

.wall-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.wall-message {
    background: rgba(255, 0, 255, 0.05);
    border: 1px solid var(--neon-magenta-soft);
    padding: 1.5rem;
    border-radius: 10px;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wall-message p {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.wall-message span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.share-section {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem;
    background: var(--dark-bg-secondary);
    border-radius: 20px;
    border: 2px solid var(--neon-cyan-soft);
}

.share-section h3 {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.share-section > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--neon-cyan-soft);
    color: var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-cyan-soft);
}

.hashtag {
    font-size: 1.5rem;
    color: var(--neon-magenta);
    font-weight: 700;
    margin-top: 1rem;
}

.campaign-references {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
}

.campaign-references p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.reference-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.reference-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.reference-links a:hover {
    color: var(--neon-magenta);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-bg-secondary);
    border-top: 1px solid var(--neon-cyan-soft);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.creator-credit-footer {
    margin: 2rem 0 1rem 0;
    padding: 1.5rem;
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan-soft);
    border-radius: 10px;
    text-align: center;
}

.creator-label-footer {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

.creator-name-footer {
    color: var(--neon-cyan);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px var(--neon-cyan-soft);
    margin: 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-magenta);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .creator-badge {
        display: none;
    }

    .reflexion-content {
        grid-template-columns: 1fr;
    }

    .phone-screen {
        width: 250px;
        height: 500px;
    }

    .comunidad-content {
        grid-template-columns: 1fr;
    }

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

    .share-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .share-btn {
        justify-content: center;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }

    .chat-simulator {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phone-screen {
        width: 200px;
        height: 400px;
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan-soft);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

