/* Variables */
:root {
    --primary: #6928f7;
    --primary-dark: #5512d6;
    --primary-light: #8c5df9;
    --primary-lighter: #e4d7ff;
    --primary-gradient: linear-gradient(135deg, #6928f7, #ff2d55);
    --accent: #ff2d55;
    --accent-dark: #e61e46;
    --accent-light: #ff6b85;
    --success: #00c975;
    --success-dark: #00a35e;
    --warning: #ffbd17;
    --danger: #ff3b30;
    --background: #0a0518;
    --background-alt: #120b29;
    --surface-1: #191230;
    --surface-2: #221943;
    --surface-3: #2e215a;
    --surface-card: rgba(41, 33, 78, 0.6);
    --text-primary: #ffffff;
    --text-secondary: #e2e0f0;
    --text-tertiary: #aba5c3;
    --text-muted: #807b9b;
    --border-light: rgba(169, 157, 218, 0.15);
    --border-medium: rgba(169, 157, 218, 0.25);
    --glow-primary: rgba(105, 40, 247, 0.35);
    --glow-success: rgba(0, 201, 117, 0.35);
    --glow-accent: rgba(255, 45, 85, 0.35);
    --header-height: 80px;
    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --section-spacing: 120px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0a0518;
        --surface-1: #191230;
        --text-primary: #ffffff;
    }
}

/* Reset y Estilos Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(105, 40, 247, 0.15), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 45, 85, 0.15), transparent 30%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 2rem);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Componentes de Utilidad */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.hidden { display: none; }

/* Glass-morphism Elements */
.glass-card {
    background: rgba(25, 18, 48, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 6px 20px var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--glow-primary);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--glow-primary);
}

.btn-accent {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
    color: var(--text-primary);
    box-shadow: 0 6px 20px var(--glow-success);
}

.btn-accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--glow-success);
}

/* Efectos de Texto */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    gap: 0.5rem;
    background: rgba(105, 40, 247, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(105, 40, 247, 0.2);
    margin-bottom: 1.5rem;
}

.badge i {
    font-size: 0.8rem;
    color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(10, 5, 24, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled {
    background: rgba(10, 5, 24, 0.95);
    border-bottom: 1px solid var(--border-medium);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.logo:hover img {
    box-shadow: 0 6px 15px var(--glow-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 140px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(105, 40, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105, 40, 247, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    z-index: -1;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-tertiary);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.stat {
    position: relative;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Element */
.dashboard-3d {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    transform: perspective(1200px) rotateY(-15deg) rotateX(8deg);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.dashboard-3d:hover {
    transform: perspective(1200px) rotateY(-10deg) rotateX(5deg) translateY(-15px);
}

.dashboard-main {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--surface-1);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    z-index: 1;
    background-image: linear-gradient(180deg, 
        rgba(105, 40, 247, 0.08) 0%, 
        rgba(34, 25, 67, 0.2) 40%, 
        rgba(10, 5, 24, 0.3) 100%);
}

.dashboard-header {
    background: rgba(34, 25, 67, 0.7);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background-color: var(--danger); }
.dot-yellow { background-color: var(--warning); }
.dot-green { background-color: var(--success); }

.dashboard-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.dashboard-body {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.data-section {
    flex: 1;
    display: flex;
    gap: 1.25rem;
    max-height: 250px;
    overflow: hidden;
}

.data-overview {
    flex: 2;
    background: rgba(34, 25, 67, 0.7);
    border-radius: var(--border-radius-md);
    height: 100%;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.overview-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.overview-badge {
    background: rgba(0, 201, 117, 0.15);
    color: var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.chart-container {
    position: relative;
    flex: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.chart-line {
    stroke: var(--primary);
    stroke-width: 24.5px;
    fill: none;
    opacity: 0.9;
}

.chart-area {
    fill: url(#chart-gradient);
    opacity: 0.3;
}

.data-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-stat-card {
    flex: 1;
    background: rgba(34, 25, 67, 0.7);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-light);
}

.data-stat-card.protected {
    background: rgba(0, 201, 117, 0.12);
    border: 1px solid rgba(0, 201, 117, 0.2);
}

.data-stat-card.danger {
    background: rgba(255, 59, 48, 0.12);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

.data-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.data-stat-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.data-stat-card.protected .data-stat-value { color: var(--success); }
.data-stat-card.danger .data-stat-value { color: var(--danger); }

.attacks-table {
    flex: 1;
    width: 100%;
    background: rgba(34, 25, 67, 0.7);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.attacks-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.attacks-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.attacks-body {
    padding: 0.5rem 0;
    height: 100%;
    overflow-y: auto;
}

.attack-row {
    display: flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    transition: background-color 0.2s ease;
}

.attack-row:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.attack-type {
    flex: 2;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.attack-time {
    flex: 1;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.attack-status {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-blocked {
    color: var(--success);
}

/* Float Elements */
.float-card {
    position: absolute;
    background: rgba(34, 25, 67, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    transform: translateZ(40px);
    border: 1px solid var(--border-light);
    z-index: 5;
    backdrop-filter: blur(10px);
}

.float-card-1 {
    top: -40px;
    left: -50px;
    width: 180px;
}

.float-card-2 {
    bottom: -30px;
    right: 0;
    width: 200px;
}

.float-card-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.float-card-content {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.glow-1 {
    width: 250px;
    height: 250px;
    background: var(--primary);
    top: -70px;
    right: 30px;
}

.glow-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: -50px;
    left: -30px;
}

/* Features Section */
.features {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-label {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    margin-bottom: 1.75rem;
}

.section-description {
    color: var(--text-tertiary);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: var(--surface-card);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 20px;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 15px 30px var(--glow-primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 40px var(--glow-primary);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* Protection Section */
.protection {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, var(--background), var(--background-alt));
    position: relative;
    overflow: hidden;
}

.protection-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.protection-content {
    max-width: 540px;
}

.protection-image {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.shield-3d {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: shieldFloat 8s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-25px) rotateY(15deg);
    }
}

.shield-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--glow-success), transparent 70%);
    animation: pulse 4s infinite alternate;
}

.shield-inner {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(105, 40, 247, 0.6), rgba(0, 201, 117, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 70px var(--glow-primary);
    overflow: hidden;
}

.shield-icon {
    font-size: 6rem;
    color: white;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
    animation: pulse 3s infinite alternate;
}

.shield-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    animation: particleMove 8s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; animation-duration: 8s; }
.particle:nth-child(2) { top: 70%; left: 20%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; animation-duration: 10s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; animation-duration: 8.5s; }

@keyframes particleMove {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.5) translate(70px, -30px); }
    100% { transform: scale(1) translate(0, 0); }
}

.attack-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.attack-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.attack-item:hover {
    background: rgba(105, 40, 247, 0.1);
    transform: translateX(8px);
    border-color: var(--primary-light);
}

.attack-icon {
    color: var(--success);
    font-size: 1.2rem;
}

.attack-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Plans Section */
.plans {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    gap: 2rem;
}

.toggle-label {
    color: var(--text-tertiary);
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--primary-light);
    font-weight: 600;
}

.toggle-switch {
    position: relative;
    width: 70px;
    height: 35px;
    border-radius: 50px;
    background-color: rgba(105, 40, 247, 0.2);
    cursor: pointer;
    padding: 4px;
}

.toggle-slider {
    position: absolute;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: var(--primary-gradient);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px var(--glow-primary);
}

.toggle-slider.yearly {
    transform: translateX(35px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: var(--surface-card);
    border-radius: var(--border-radius-xl);
    padding: 3.5rem 2.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-20px);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.pricing-card.popular {
    background: linear-gradient(180deg, var(--surface-card), rgba(105, 40, 247, 0.15));
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px var(--glow-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-name {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.pricing-description {
    color: var(--text-tertiary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border-light);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--success);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-cta {
    text-align: center;
}

/* Process Section */
.process {
    padding: var(--section-spacing) 0;
    position: relative;
    background: linear-gradient(180deg, var(--background-alt), var(--background));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 5rem 3rem;
    position: relative;
}

.process-connector {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark));
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 30px;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 15px 35px var(--glow-primary);
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    transform: rotateY(15deg) scale(1.1);
    box-shadow: 0 20px 45px var(--glow-primary);
}

.step-content {
    background: var(--surface-card);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.process-step:hover .step-content {
    transform: translateY(-15px);
    border-color: var(--primary-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.step-description {
    color: var(--text-tertiary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    position: relative;
    background: var(--surface-card);
    border-radius: var(--border-radius-xl);
    padding: 6rem;
    border: 1px solid var(--border-medium);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow.glow-1 {
    top: -150px;
    left: 10%;
    background: var(--primary);
    opacity: 0.5;
}

.cta-glow.glow-2 {
    bottom: -150px;
    right: 10%;
    background: var(--accent);
    opacity: 0.5;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.6;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    background: linear-gradient(45deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-description {
    color: var(--text-tertiary);
    font-size: 1.35rem;
    max-width: 820px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 8rem 0 3rem;
    background-color: var(--surface-1);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 5rem;
    margin-bottom: 6rem;
}

.footer-about {
    max-width: 320px;
}

.footer-logo {
    width: 70px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-description {
    color: var(--text-tertiary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 1rem;
}

.footer-link a {
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link a:hover {
    color: var(--primary-light);
    transform: translateX(8px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(105, 40, 247, 0.15);
    color: var(--primary-light);
    border-radius: 14px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(105, 40, 247, 0.2);
}

.contact-item:hover .contact-icon {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px var(--glow-primary);
}

.contact-text {
    color: var(--text-tertiary);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 2.5rem;
}

.footer-link-bottom {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-link-bottom:hover {
    color: var(--primary-light);
}

/* Animaciones */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* Modal de Bajo Ataque */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 0;
}

.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    z-index: 1;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-wrapper {
    transform: translateY(0);
}

.emergency-badge {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--danger), var(--accent));
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(255, 59, 48, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.emergency-icon {
    font-size: 1rem;
}

.modal-container {
    position: relative;
    width: 100%;
    background: var(--surface-card);
    border-radius: var(--border-radius-xl);
    padding: 3.5rem;
    border: 1px solid var(--border-medium);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    max-height: 85vh;
}

.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: rgba(25, 18, 48, 0.3);
    border-radius: 10px;
    margin: 10px 0;
    transition: background-color 0.3s ease;
}

.modal-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    box-shadow: 0 2px 6px var(--glow-primary);
    transition: all 0.3s ease;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    box-shadow: 0 4px 12px var(--glow-primary);
    transform: scaleX(1.2);
}

.modal-container::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--accent), var(--primary-dark));
    box-shadow: 0 2px 8px var(--glow-accent);
}

.modal-container:hover::-webkit-scrollbar-track {
    background: rgba(25, 18, 48, 0.5);
}

.modal-container {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(25, 18, 48, 0.3);
    overscroll-behavior: contain;
}

.modal-container::before {
    content: '';
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, var(--surface-card) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
    margin: -3.5rem -3.5rem 0 -3.5rem;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.modal-container::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(0deg, var(--surface-card) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
    margin: 0 -3.5rem -3.5rem -3.5rem;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
    opacity: 0;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

.modal-container.scrolled-from-top::before {
    opacity: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.modal-container.can-scroll-down::after {
    opacity: 1;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-body {
    margin-bottom: 2.5rem;
}

.modal-description {
    color: var(--text-tertiary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.25rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px var(--glow-primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.modal-decoration {
    position: absolute;
    z-index: -1;
}

.modal-glow-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.modal-glow-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--accent);
    filter: blur(60px);
    opacity: 0.3;
    bottom: -70px;
    right: -70px;
}

.modal-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    z-index: -2;
    animation: pulse 4s infinite alternate;
}

.modal-wrapper::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(35px);
    z-index: -2;
    animation: pulse 3s infinite alternate;
}

.modal.active .modal-wrapper {
    filter: drop-shadow(0 0 50px rgba(105, 40, 247, 0.3));
}

.modal.active .modal-decoration {
    animation: glowFadeIn 0.8s ease-out;
}

@keyframes glowFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

.modal-container:hover ~ .modal-glow-1 {
    opacity: 0.4;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.modal-container:hover ~ .modal-glow-2 {
    opacity: 0.35;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.text-center {
    text-align: center;
}

.success-icon, .error-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.success-icon i {
    font-size: 4rem;
    color: var(--success);
}

.error-icon i {
    font-size: 4rem;
    color: var(--danger);
}

#emergency-form .form-input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.2);
}

.form-error-message {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border-radius: var(--border-radius-xl);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#modal-form-content,
#success-message,
#error-message {
    transition: opacity 0.3s ease;
}

/* Menú móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--surface-1);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--border-light);
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1rem;
}

.mobile-nav-link:hover {
    color: var(--primary-light);
    transform: translateX(8px);
}

.mobile-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.mobile-close-btn:hover {
    color: var(--primary-light);
    background-color: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Animaciones */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 1280px) {
    .container { padding: 0 3rem; }
}

@media (max-width: 1024px) {
    .hero-content,
    .protection-wrapper,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle,
    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .process-connector {
        display: none;
    }

    .cta-container {
        padding: 4rem 3rem;
    }

    .modal-glow-1 {
        width: 150px;
        height: 150px;
        top: -80px;
        left: -80px;
    }
    
    .modal-glow-2 {
        width: 120px;
        height: 120px;
        bottom: -60px;
        right: -60px;
    }
    
    .modal-wrapper::before {
        width: 80px;
        height: 80px;
        top: -40px;
        left: -40px;
    }
    
    .modal-wrapper::after {
        width: 70px;
        height: 70px;
        bottom: -25px;
        right: -25px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 80px;
    }
    
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    h3 { font-size: 1.5rem; }

    .container { padding: 0 2rem; }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo span {
        display: none;
    }

    .features-grid,
    .pricing-grid {
        gap: 2rem;
    }

    .attack-list {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-15px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .modal-container {
        padding: 2.5rem;
        max-height: 95vh;
    }
    
    .modal-container::before,
    .modal-container::after {
        margin-left: -2.5rem;
        margin-right: -2.5rem;
    }
    
    .modal-container::before {
        margin-top: -2.5rem;
    }
    
    .modal-container::after {
        margin-bottom: -2.5rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }

    .emergency-badge {
        right: 50%;
        transform: translate(50%, -50%);
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    
    .hero {
        padding: 150px 0 100px;
    }

    .hero-buttons,
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        gap: 1.5rem;
    }

    .btn { 
        width: 100%;
        max-width: 250px; 
    }

    .features-grid,
    .pricing-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .step-content {
        padding: 2rem;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }

    .modal-container {
        padding: 2rem 1.5rem;
        max-height: 98vh;
    }
    
    .modal-container::before,
    .modal-container::after {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
    
    .modal-container::before {
        margin-top: -2rem;
    }
    
    .modal-container::after {
        margin-bottom: -2rem;
    }

    .modal-container::-webkit-scrollbar {
        width: 4px;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .modal-glow-1 {
        width: 100px;
        height: 100px;
        top: -60px;
        left: -60px;
    }
    
    .modal-glow-2 {
        width: 80px;
        height: 80px;
        bottom: -40px;
        right: -40px;
    }
    
    .modal-wrapper::before {
        width: 60px;
        height: 60px;
        top: -30px;
        left: -30px;
    }
    
    .modal-wrapper::after {
        width: 50px;
        height: 50px;
        bottom: -20px;
        right: -20px;
    }
}

/* Dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .modal-container::-webkit-scrollbar {
        width: 6px;
    }
    
    .modal-container::-webkit-scrollbar-thumb {
        background: rgba(105, 40, 247, 0.8);
        border-radius: 6px;
    }
    
    .modal-container::-webkit-scrollbar-track {
        background: rgba(25, 18, 48, 0.2);
    }
}

/* Ocultar reCAPTCHA */
.grecaptcha-badge {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}