:root {
    --purple: #9b35f8;
    --purple-light: #b968ff;
    --purple-dark: #7b2bd1;
    --purple-glow: rgba(155, 53, 248, 0.4);
    --green: rgba(38, 247, 55, 0.726);
    --green-light: rgba(102, 248, 114, 0.493);
    --bg-dark: #0f0f12;
    --bg-darker: #0a0a0d;
    --bg-card: rgba(22, 22, 28, 0.7);
    --bg-glass: rgba(18, 18, 24, 0.6);
    --text-primary: #f4f4f6;
    --text-secondary: #b0b0b8;
    --text-muted: #6e6e78;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(155, 53, 248, 0.4);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(155, 53, 248, 0.25);
    --shadow-green: 0 0 40px rgba(53, 248, 69, 0.25);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --max-width: 1280px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.section-dark {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(155, 53, 248, 0.12);
    color: var(--purple-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(155, 53, 248, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 50%, #d896ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition-smooth), padding var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled {
    background: rgba(15, 15, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    z-index: 1001;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 0 24px rgba(155, 53, 248, 0.4);
}

.nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--purple);
    border-radius: 100px;
    transform: scaleX(0);
    transition: transform var(--transition-smooth);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.header-btn {
    margin-left: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 100px;
    transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(53, 248, 63, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(53, 248, 63, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: #fff;
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.35);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.7;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(155, 53, 248, 0.1);
    border: 1px solid rgba(155, 53, 248, 0.25);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-light);
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-light);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.45;
    will-change: transform;
    transform: translateZ(0);
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--purple);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 220px;
    height: 220px;
    background: #5865F2;
    bottom: 10%;
    left: 10%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 180px;
    height: 180px;
    background: #c084fc;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 12s ease-in-out infinite;
}

.hero-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
    animation: floatCard 6s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--purple-light);
}

.hero-card-1 {
    top: 8%;
    right: 5%;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 20%;
    left: 0%;
    animation-delay: 2s;
}

.hero-card-3 {
    bottom: 5%;
    right: 15%;
    animation-delay: 4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s backwards;
    z-index: 1;
}

.mouse {
    width: 28px;
    height: 44px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 100px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.2), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(155, 53, 248, 0.1);
    color: var(--purple-light);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--purple-glow), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.service-card:hover::after {
    opacity: 0.3;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(155, 53, 248, 0.2) 0%, rgba(88, 101, 242, 0.15) 100%);
    color: var(--purple-light);
    font-size: 1.6rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--purple-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.service-link:hover {
    color: var(--text-primary);
}

/* Stats */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155, 53, 248, 0.15), transparent 70%);
    pointer-events: none;
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    contain: layout style paint;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.2);
}

.stat-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--purple-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--purple-light);
    margin-left: 4px;
}

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

/* Features row */
.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth);
    contain: layout style paint;
}

.feature-item:hover {
    transform: translateX(6px);
    border-color: var(--border-hover);
}

.feature-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(155, 53, 248, 0.1);
    color: var(--purple-light);
    font-size: 1.2rem;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

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

/* Community */
.community-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    contain: layout style paint;
}

.community-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.18), transparent 70%);
    top: -50%;
    right: -20%;
    pointer-events: none;
}

.community-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 25px rgba(88, 101, 242, 0.35);
}

.community-icon {
    font-size: 2.2rem;
    color: #fff;
}

.community-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.community-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.community-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.community-list li i {
    color: var(--purple-light);
    font-size: 1rem;
}

.community-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.community-orbs {
    position: relative;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: floatOrb 10s ease-in-out infinite;
}

.orb-1 {
    width: 220px;
    height: 220px;
    background: var(--purple);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 160px;
    height: 160px;
    background: #5865F2;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.orb-3 {
    width: 120px;
    height: 120px;
    background: #c084fc;
    bottom: 5%;
    left: 30%;
    animation-delay: 6s;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    contain: layout style paint;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.2), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.team-avatar {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 53, 248, 0.25), rgba(88, 101, 242, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--purple-light);
    overflow: hidden;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--purple-light);
    animation: spin 6s linear infinite;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.team-role {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(155, 53, 248, 0.1);
    color: var(--purple-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.team-socials {
    display: inline-flex;
    gap: 12px;
}

.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.team-socials a:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    transform: translateY(-3px);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
    contain: layout style paint;
    display: flex;
    flex-direction: column;
}


.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.2), 0 12px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 0.85rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1; 
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(155, 53, 248, 0.25), rgba(88, 101, 242, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--purple-light);
}

.faq-question i {
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform var(--transition-smooth), color var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--purple-light);
}

.faq-answer {
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4, .footer-policies h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* MODIFICADO: Cambiamos display y añadimos alineación */
.footer-links a, .footer-contact a, .footer-policies a {
    display: inline-flex;       /* Cambiado de 'block' a 'inline-flex' para que no rompa el icono */
    align-items: center;        /* Centra el icono verticalmente con el texto */
    width: 100%;                /* Ocupa el ancho disponible para mantener el margen inferior */
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.footer-links a:hover, .footer-contact a:hover, .footer-policies a:hover {
    color: var(--purple-light);
}

/* MODIFICADO: Ajustamos el comportamiento del icono */
.footer-contact a i {
    margin-right: 12px;         /* Un poco más de espacio para que respire */
    color: var(--purple-light);
    flex-shrink: 0;             /* Evita que el icono se encoja si el texto es largo */
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    text-align: center;
}

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

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(155, 53, 248, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition-smooth), visibility var(--transition-smooth), transform var(--transition-smooth);
    z-index: 900;
    transform: translateZ(0);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 0 30px rgba(155, 53, 248, 0.4);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-30px) scale(1.05); }
    66% { transform: translateY(20px) scale(0.95); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

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

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

/* Mobile */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 350px;
    }

    .community-card {
        grid-template-columns: 1fr;
    }

    .community-visual {
        display: none;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .header-container {
        padding: 0 16px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(15, 15, 18, 0.95);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right var(--transition-smooth);
        border-left: 1px solid var(--border);
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .header-btn {
        margin: 16px 0 0;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding-top: 100px;
    }

    .hero-visual {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    #particles-canvas {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Selection */
::selection {
    background: rgba(155, 53, 248, 0.35);
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(155, 53, 248, 0.4);
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(155, 53, 248, 0.7);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #25D366;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity var(--transition-smooth), transform var(--transition-smooth), visibility var(--transition-smooth);
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 22px;
    width: 10px;
    height: 10px;
    background: #25D366;
    transform: rotate(45deg);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 80px;
        right: 20px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
