/* Contenido principal limpio */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 480px;
    position: relative;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-content .description:hover {
    opacity: 1;
}

.buttons-group {
    margin: 2.5rem 0;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.support-text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.support-text:hover {
    opacity: 1;
}

.support-text a {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

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

.support-text a:hover::after {
    width: 100%;
}

/* Responsive para contenido principal */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content .description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
} 