:root {
    --primary: #1ed760;
    --dark: #121212;
    --darker: #0a0a0a;
    --light-text: #f1f1f1;
    --gray: #333333;
    --card-bg: #181818;
}

body::-webkit-scrollbar {
    width: var(--scroll-size, .3vw);
    height: var(--scroll-size, .3vw);
}
body::-webkit-scrollbar-track {
    background-color: var(--scroll-track, transparent);
    border-radius: var(--scroll-track-radius, var(--scroll-radius));
}
body::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color, rgb(0, 0, 0));
    background-image: var(--scroll-thumb, none);
    border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}
:root {
    --scroll-size: .3vw;
    --scroll-radius: 10vw;
    --scroll-track: rgba(255, 255, 255, 0.26);
    --scroll-thumb-color: rgb(0, 255, 73);
}

* {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(30, 215, 96, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(30, 215, 96, 0.03) 0%, transparent 20%),
        linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    background-attachment: fixed;
}


header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Estilo para el menú izquierdo */
.left-menu {
    justify-self: start;
}

/* Logo centrado */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    grid-column: 2;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(30, 215, 96, 0.5));
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Navegación y menú móvil a la derecha */
nav {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 1.5rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.svg-icon {
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    fill: currentColor;
    margin-right: 0.25rem;
}

/* Menú móvil */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 1rem;
}

.mobile-menu:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    padding: 7rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.highlight {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--darker);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 215, 96, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    color: var(--dark);
    background-color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.features {
    padding: 5rem 2rem;
    background-color: rgba(18, 18, 18, 0.7);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2a2a2a;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.team {
    padding: 5rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--card-bg);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #2a2a2a;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 2rem auto 1rem;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1rem 2rem 2rem;
}

.team-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-info p {
    color: #aaa;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    color: var(--light-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.cta {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 215, 96, 0.1), rgba(30, 215, 96, 0.0));
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #aaa;
}
/* Estilos CSS para el footer */
footer {
    background-color: var(--darker);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 6rem; /* Reducido de 20rem para ser más razonable */
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-col ul {
    padding: 0;
    list-style-type: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
}

.copyright a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--primary);
}

/* Floating shapes */
.shape {
    position: absolute;
    border-radius: 20%;
    background-color: rgba(30, 215, 96, 0.03);
    animation: float 15s ease-in-out infinite alternate;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    right: 10%;
    top: 15%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.shape-2 {
    width: 200px;
    height: 200px;
    left: 10%;
    bottom: 20%;
    animation-delay: 5s;
    transform: rotate(15deg);
}

.shape-3 {
    width: 150px;
    height: 150px;
    left: 20%;
    top: 30%;
    animation-delay: 8s;
    transform: rotate(30deg);
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Responsive */

@media (max-width: 992px){
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 0.1rem 0;
    }

    .nav-links li a {
        display: block;
        padding: 0.1rem 1rem;
    }

    .mobile-menu {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        transition: color 0.3s ease;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .mobile-menu:hover {
        color: var(--primary);
    }
}
@media (max-width: 768px) {

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h3 {
        font-size: 1.8rem;
    }

    .feature-card,
    .team-card {
        padding: 1.5rem;
    }

    header {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 1rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-col {
        padding: 0 1rem;
    }
    
    .copyright {
        margin-top: 2rem;
        padding: 1rem 10px 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 6rem;
    }

    .logo img {
        height: 30px;
    }


    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    footer {
        padding: 1rem 0.5rem;
    }
    
    .footer-content {
        gap: 0.5rem;
    }
    
    .footer-col h5 {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .footer-col li {
        margin-bottom: 0.3rem;
    }
    
    .copyright {
        margin-top: 1rem;
        padding-top: 0.7rem;
        font-size: 0.75rem;
    }
    .footer-col ul {
        margin: 0;
    }
    
    .footer-col:not(:last-child) {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .cta .button-container {
        flex-direction: flex-start;
        gap: 1rem;
    }
    
    .btn {
        margin: 0;
    }
    
    .cta {
        padding: 2.5rem 1rem;
    }
    
    .cta p {
        margin-bottom: 1.5rem;
    }
}