/* Estilos para ícones SVG */
.nav svg, .hero-buttons svg, .hero-features svg, .step-icon svg, .pricing-features svg, .platform-list svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    stroke: currentColor;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.hero-features .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.platform-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
    color: white;
}

.pricing-features .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    color: #10b981;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .nav svg {
        margin-right: 0.25rem;
    }
    
    .hero-buttons a {
        font-size: 0.875rem;
    }
    
    .hero-buttons svg {
        width: 14px;
        height: 14px;
    }
}

