@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
    --secondary-gradient: linear-gradient(135deg, #84fab0, #8fd3f4);
    --text-color: #e0e0e0;
    --card-bg: rgba(255, 255, 255, 0.1);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #0f0f1f;
    color: var(--text-color);
    min-height: 100vh;
    cursor: none;
    overflow-x: hidden;
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(110, 142, 251, 0.8), 0 0 20px rgba(110, 142, 251, 0.6), 0 0 30px rgba(110, 142, 251, 0.4);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-btn {
    background: transparent;
    border: 2px solid #84fab0;
    color: #84fab0;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    border-radius: 25px;
    cursor: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.section-btn:hover::before, .section-btn.active::before {
    left: 0;
}

.section-btn:hover, .section-btn.active {
    color: #0f0f1f;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.tool-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(168, 239, 255, 0.1), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.tool-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tool-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 2px solid rgba(132, 250, 176, 0.5);
}

.tool-info {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.tool-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: #84fab0;
}

.tool-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tool-link {
    display: inline-block;
    background: var(--secondary-gradient);
    color: #0f0f1f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: none;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 250, 176, 0.4);
}

.cursor {
    display: none; /* Ocultar el cursor grande */
}

.cursor-trail {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
}

.cursor-static {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: white;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    color: #00ffff;
}